Authorizations
A valid API key generated in Topsort's UI.
Body
application/json
The IDs of the vendors to delete.
Minimum length:
1
Example:
["XljzxWf8sfqF", "eBbIYS16vZV3"]
Response
Successful Response
curl --request DELETE \
--url https://api.topsort.com/public/v1/catalog-search-service/catalogs/vendors \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"ids": [
"XljzxWf8sfqF",
"eBbIYS16vZV3"
]
}'
This response does not have an example.
Delete vendors by ID.
This function won’t error out when trying to delete vendors that don’t exist.
curl --request DELETE \
--url https://api.topsort.com/public/v1/catalog-search-service/catalogs/vendors \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"ids": [
"XljzxWf8sfqF",
"eBbIYS16vZV3"
]
}'
This response does not have an example.
A valid API key generated in Topsort's UI.
The IDs of the vendors to delete.
1
["XljzxWf8sfqF", "eBbIYS16vZV3"]
Successful Response
Was this page helpful?