Skip to main content
GET
/
basket
/
{id}
/
info
Get basket information
curl --request GET \
  --url https://api.managem.co.uk/basket/{id}/info \
  --header 'Authorization: Bearer <token>'
{
  "fee": 123,
  "summary": {
    "items": 1,
    "cards": 1,
    "products": 1,
    "subTotal": 1,
    "sellers": {}
  },
  "delivery": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The ID of the basket to retrieve

Response

200 - application/json

The information for the items contained in the basket

fee
number
required

The service fee for the basket, calculated based on the total value of the items and the number of sellers

summary
object
required
delivery
object
required