Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Method: DELETE

URL: https://pim-client.wizart.ai/api/v2/collection/:collectionUuid/articles

Headers: Accept: application/json, Content-Type: applicaton/json, Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbG…

Body:

{
   "data":[
      {
         "type": "products",
         "id": "{{PRODUCT_UUID_1}}"
      },
      {
         "type": "products",
         "id": "{{PRODUCT_UUID_2}}"
      }
   ]
}
 Request example

CURL:

curl --location --request DELETE 'https://pim-client.wizart.ai/api/v2/collection/:collectionUuid/articles/' \
--header 'Authorization: Bearer <token>' \
--data '{
  "data": {
    "type": "<string>",
    "id": "<string>"
  }
}'
 Response example
{
  "message": "ok"
}
  • No labels