Skip to main content
PUT
/
basket
/
{id}
Update basket item
curl --request PUT \
  --url https://api.managem.co.uk/basket/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "listingId": "<string>",
  "quantity": 1
}
'
{}

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

Body

application/json
listingId
string
required

The ID of the listing

quantity
integer
default:1

The quantity to reduce by, defaults to 1

Response

The updated basket items

{key}
object[]