List checkout elements
Retrieve a paginated list of checkout elements. Returns all checkout elements created for your workspace, including their associated offers and configuration settings. Results are sorted by creation date (newest first).
Authorization
Public key In: header
Query Parameters
GET /v0/elements/checkout/list Parameter
double1 <= value <= 10010GET /v0/elements/checkout/list Parameter
double0 <= value <= 1.7976931348623157e+3080Response Body
application/json
application/json
curl -X GET "https://example.com/v0/elements/checkout/list"{ "status": "success", "data": { "checkoutElements": [ { "object": "checkoutElement", "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": null, "status": "ACTIVE", "subscriptionOffer": false, "offers": [ { "object": "offer", "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "internalId": null } ] } ], "count": -1.7976931348623157e+308 }}Create a new Checkout Element POST
Create a new Checkout Element with specified offers. Checkout Elements are embeddable or hosted checkout experiences that can be integrated into your website or application. They handle the entire checkout flow including payment collection, tax calculation, and order creation. Supported configurations: - Single one-time purchase: One offer for a standard product - Multiple one-time purchases: Multiple offers in a cart - Subscription: One subscription offer (cannot be combined with other offers)
List offers GET
Retrieve a paginated list of offers with powerful filtering options. Offers represent purchasable configurations of products, including pricing, currency, and subscription settings. A single product can have multiple offers for different pricing tiers or billing intervals. Results are sorted by creation date (newest first) by default.