Edit Category

PUT /self/{shopId}/categories/{categoryId}

Path parameters

application/json

Body

Responses

  • 200

    Category edited

PUT /self/{shopId}/categories/{categoryId}
curl \
 -X PUT https://dev.sellpass.io/self/{shopId}/categories/{categoryId} \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: application/json" \
 -d '{"name":"string","listingIds":[42]}'
Request example
{
  "name": "string",
  "listingIds": [
    42
  ]
}