Managem
HomeLink
Multiple Menus
  • Link1
  • Link2
HomeLink
Multiple Menus
  • Link1
  • Link2
  1. Basket
  • Users
  • APIs
    • Basket
      • List items in the basket
        GET
      • Add an item to the basket
        POST
      • Update an item in the basket
        PUT
      • Remove an item from the basket
        DELETE
      • Retrieve the basket summary
        GET
      • Retrieve the basket information, fees & delivery costs
        GET
      • Create a checkout session for the basket
        POST
    • Conversations
      • List conversations
      • Create conversation
      • Count unread messages
      • List messages
      • Send a message
    • Search
      • Search using full-text and facets
      • Lookup usernames
      • Retrieve an item by its URN or slug
      • Retrieve multiple items by URN
      • Retrieve a faceted hierarchy of items
      • Retrieve search results for a specific game
      • Retrieve search results for a specific set
      • Retrieve search results for a specific type
    • Sellers
      • Create listing
      • Search listings
      • Get listing
      • Update listing
      • Delete listing
      • Create image upload URL
      • Get delivery configuration
      • Upsert delivery configuration
      • List orders
      • Get order
      • Create seller account
      • Get seller account
      • Get seller status
      • Get dashboard link
      • Get seller balance
      • Withdraw funds
      • List payouts
      • List transfers
    • Seller Listings
      • Search listings
      • Search a seller's listings
      • Search listings for a specific item
      • Retrieve historical prices for an item
    • Users
      • Find/Lookup addresses
      • Retrieve full address details
      • Store a new Address
      • List all Addresses
      • Delete an Address
      • Get user account information
      • Update user password
      • Update user profile
      • Update a users email address by first requesting a verification code
      • Update a user's email address by verifying the received code
      • Create payment method
      • List payment methods
      • Delete payment method
      • List purchases
      • Get purchase
      • List reviews
      • Create review
      • Update review
      • Delete review
    • Profiles
      • Get user profile
      • List reviews
  1. Basket

Update an item in the basket

PUT
/basket/{id}
Update an item in the basket.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://api.managem.co.uk/basket/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "listingId": "string",
    "quantity": 1
}'
Response Response Example
200 - Example 1
{
    "property1": [
        {
            "listingId": "string",
            "urn": "string",
            "item": {
                "id": "string",
                "urn": "string",
                "type": "card",
                "game": "Pokemon",
                "title": "string",
                "name": "string",
                "number": "string",
                "description": "string",
                "set": {
                    "id": "string",
                    "name": "string",
                    "size": 0,
                    "counts": {
                        "printed": 0,
                        "total": 0
                    },
                    "released": "string",
                    "references": [
                        "string"
                    ]
                },
                "series": {
                    "name": "string",
                    "id": "string"
                },
                "image": {
                    "illustrator": "string",
                    "url": "http://example.com"
                },
                "alternatives": [
                    "string"
                ],
                "metadata": [
                    {
                        "name": "string",
                        "value": "string",
                        "detail": null
                    }
                ]
            },
            "expires": "2019-08-24T14:15:22Z",
            "price": 1,
            "quantity": 1,
            "type": "card"
        }
    ],
    "property2": [
        {
            "listingId": "string",
            "urn": "string",
            "item": {
                "id": "string",
                "urn": "string",
                "type": "card",
                "game": "Pokemon",
                "title": "string",
                "name": "string",
                "number": "string",
                "description": "string",
                "set": {
                    "id": "string",
                    "name": "string",
                    "size": 0,
                    "counts": {
                        "printed": 0,
                        "total": 0
                    },
                    "released": "string",
                    "references": [
                        "string"
                    ]
                },
                "series": {
                    "name": "string",
                    "id": "string"
                },
                "image": {
                    "illustrator": "string",
                    "url": "http://example.com"
                },
                "alternatives": [
                    "string"
                ],
                "metadata": [
                    {
                        "name": "string",
                        "value": "string",
                        "detail": null
                    }
                ]
            },
            "expires": "2019-08-24T14:15:22Z",
            "price": 1,
            "quantity": 1,
            "type": "card"
        }
    ]
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
The updated basket items
Body

🟠404Record Not Found
🟠409409
🔴500Server Error
Previous
Add an item to the basket
Next
Remove an item from the basket
Built with