Atlas API DocumentationGuideReference
v1.0.0
OAS 3.0.3

Think Patented - Atlas API

Think Patented - Atlas API

Server: https://api.thinkatlas.io
Client Libraries

Atlas

Submit Order

Body
application/json
  • orderId
    Type:str
    required

    Your custom Order ID. Each order ID should be unique. Duplicate order IDs will be rejected.

  • orderTime
    Type:str

    ISO-8601 Timestamp

  • needByDate
    Type:str

    The date the order should be shipped by. Y-mm-dddd format

  • amounts
    Type:object
    required
  • currency
    Type:str
    required

    Only USD is supported currently.

  • orderBy
    Type:object
    required
  • billingAddress
    Type:object
  • shippingAddress
    Type:object
    required
  • lineItems
    Type:object
    required
  • customData
    Type:object
Responses
  • application/json
  • application/json
  • application/json
  • application/json
Request Example forPOST/order
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
}

Order360 v1 (Collapsed)

Order360 v2 (Collapsed)

Order360 v2 Operations