Cart history

With below endpoints you’re able to check your completed carts history. Remember that orders are often merged, also some goods can be removed from the final order.

GET /cart-history

List of completed carts, without ordered goods details.

Allowed query parameters:
  • page - simple pagination, starting from 1

Curl example:

curl -XGET https://api.url/cart-history?page=2 -H 'Authorization: Bearer ACCESS_TOKEN'

GET /cart-history/{uuid}

This method allows you to check the details of every cart.

Curl example:

curl -XGET https://api.url/cart-history/410069a7-c69c-4c2f-a5f3-002bc394f522 -H 'Authorization: Bearer ACCESS_TOKEN'