Last updated 5 months ago
curl -L \ --url '/orders'
[ { "id": 1, "userId": 1, "date": "2023-01-01T00:00:00Z", "products": [ { "id": 1, "name": "Product Name", "quantity": 2, "priceInCents": 1000 } ], "amountInCents": 2000, "clientSecret": "client_secret", "status": "pending" } ]
curl -L \ --url '/orders/demo-cart'
[ { "id": 1, "name": "Product Name", "quantity": 2, "priceInCents": 1000 } ]
curl -L \ --url '/orders/{id}'
{ "id": 1, "userId": 1, "date": "2023-01-01T00:00:00Z", "products": [ { "id": 1, "name": "Product Name", "quantity": 2, "priceInCents": 1000 } ], "amountInCents": 2000, "clientSecret": "client_secret", "status": "pending" }
curl -L \ --request POST \ --url '/orders/new' \ --header 'Content-Type: application/json' \ --data '[ "text" ]'
ID of the order
123
Status of the order
Pending
Awaiting Payment
Payment Failed
Order Paid
Shipped
Completed
Cancelled
Declined
curl -L \ --request POST \ --url '/orders/status-update' \ --header 'Content-Type: application/json' \ --data '{ "orderId": 123, "status": "Pending" }'
{ "id": 1, "status": "completed" }
1
curl -L \ --request PUT \ --url '/leads/statuses/order' \ --header 'Content-Type: application/json' \ --data '{ "id": 1, "statusOrder": 1 }'
[ { "id": 1, "statusOrder": 1 } ]