Managem
HomeLink
Multiple Menus
  • Link1
  • Link2
HomeLink
Multiple Menus
  • Link1
  • Link2
  1. Sellers
  • Users
  • APIs
    • Basket
      • List items in the basket
      • Add an item to the basket
      • Update an item in the basket
      • Remove an item from the basket
      • Retrieve the basket summary
      • Retrieve the basket information, fees & delivery costs
      • Create a checkout session for the basket
    • 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
        POST
      • Search listings
        POST
      • Get listing
        GET
      • Update listing
        PUT
      • Delete listing
        DELETE
      • Create image upload URL
        POST
      • Get delivery configuration
        GET
      • Upsert delivery configuration
        PUT
      • List orders
        GET
      • Get order
        GET
      • Create seller account
        POST
      • Get seller account
        GET
      • Get seller status
        GET
      • Get dashboard link
        GET
      • Get seller balance
        GET
      • Withdraw funds
        POST
      • List payouts
        GET
      • List transfers
        GET
    • 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. Sellers

Update listing

PUT
/seller/listings/{id}
Update an existing listing owned by the authenticated seller.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://api.managem.co.uk/seller/listings/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "condition": "string",
    "price": 0,
    "quantity": 1,
    "language": "string",
    "variants": [],
    "comment": "string"
}'
Response Response Example
{
    "id": "string",
    "urn": "string",
    "condition": "string",
    "price": 0,
    "quantity": 1,
    "language": "string",
    "variants": [],
    "comment": "string",
    "image": "string",
    "createdAt": "string",
    "updatedAt": "string",
    "item": {
        "game": "Pokemon",
        "type": "card",
        "name": "string",
        "description": "string",
        "number": "string",
        "set": {
            "id": "string",
            "name": "string",
            "size": 0,
            "counts": {
                "printed": 0,
                "total": 0
            },
            "released": "string",
            "references": [
                "string"
            ]
        },
        "series": {
            "name": "string",
            "id": "string"
        }
    },
    "seller": {
        "id": "string",
        "username": "string",
        "reviews": 0,
        "rating": 0,
        "score": 0
    }
}

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
Listing
Body

🟠404Record Not Found
Previous
Get listing
Next
Delete listing
Built with