Place one or more product orders
API Integration
Place one or more product orders
Places an order for one or more products.
Constraints:
- Maximum 10 different items in a single request.
- Maximum 25 quantity per item.
- Each item must include:
slug(product id, same as productslugfrom products API)skuItemId(ID of the SKU)quantityamount
requiredFieldsis optional, but required if the product itself has required fields.emailNotificationis optional, default true if set to false, no email will be sent to you regarding order updates.
POST
Place one or more product orders
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Response
Order accepted and checkout created.
Checkout identifier (checkoutId).
Example:
"CHK-123456"
Initial status of the checkout, usually pending.
Example:
"pending"
Total price converted into multiple currencies. Keys are currency codes (e.g. USD, EUR, BTC).
Example:
{
"USD": 10.199918400652795,
"EUR": 8.853611949827732
}Total amount in USD.
Example:
10
Full data of each ordered item.