GET
/
orders
curl --request GET \
  --url https://take.app/api/platform/orders
[
  {
    "id": "<string>",
    "status": "ORDER_STATUS_PENDING",
    "paymentStatus": "PAYMENT_STATUS_PENDING",
    "fulfillmentStatus": "UNFULFILLED",
    "customer": {
      "name": "<string>",
      "phone": "<string>",
      "email": "jsmith@example.com"
    },
    "items": [
      {
        "productId": "<string>",
        "quantity": 123
      }
    ],
    "totalAmount": 123,
    "createdAt": "2023-11-07T05:31:56Z"
  }
]

Authorizations

api_key
string
query
required

Response

200
application/json

Get all orders in the store

The response is of type object[].