v1.0.0
OAS 3.0.3
Think Patented - Atlas API
Think Patented - Atlas API
Client Libraries
Think Patented - Atlas API
Your custom Order ID. Each order ID should be unique. Duplicate order IDs will be rejected.
ISO-8601 Timestamp
The date the order should be shipped by. Y-mm-dddd format
Only USD is supported currently.
curl https://api.thinkatlas.io/order \
--request POST \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
--data '{
"orderId": "2024-01-01-3048534075",
"orderTime": "2024-01-01T1:23:45Z",
"needByDate": "2024-01-03",
"amounts": [],
"currency": "USD",
"orderBy": [],
"billingAddress": [],
"shippingAddress": [],
"lineItems": [],
"customData": {
"key": "value"
}
}'
{
"status": "success",
"message": "Order was successfully received.",
"data": {
"requestId": "123456",
"orderId": "YOUR-ORDER-ID"
},
"errors": null
}success