API Documentation
Get Orders
Get all orders
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
Response
200
application/json
Get all orders in the store
The response is of type object[]
.
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"
}
]
Assistant
Responses are generated using AI and may contain mistakes.