Checkout

3 endpoints

Process checkout

Process a customer checkout with cart items, creating an order

Request Body
github_com_skiz_limbo_internal_presentation_http_dto.CheckoutRequest

Checkout request

Responses
200Checkout successful
400Invalid request
401Unauthorized
500Internal server error
Code Examples
example.ts
typescript
1import { Limbos } from '@limbos/sdk';
2
3const client = new Limbos({
4 apiKey: process.env.LIMBOS_API_KEY,
5});
6
7const result = await client.checkout.create({
8// Add required fields here
9});
10
11console.log(result);