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.CheckoutRequestCheckout request
Responses
200Checkout successful
400Invalid request
401Unauthorized
500Internal server error
Code Examples
example.ts
typescript
1import { Limbos } from '@limbos/sdk';23const client = new Limbos({4 apiKey: process.env.LIMBOS_API_KEY,5});67const result = await client.checkout.create({8// Add required fields here 9});1011console.log(result);