Delete Product-File Relationships
DELETE
Delete Product-File Relationships
https://api.moltin.com/pcm/products/:productId/relationships/files
Parameters
Path parameters
Name | Required | Type | Description |
---|---|---|---|
productId | Required | string | The unique identifier of the product. |
Headers
Name | Required | Type | Description |
---|---|---|---|
Authorization | Required | string | The Bearer token to grant access to the API. |
Body
Name | Required | Type | Description |
---|---|---|---|
type | Required | string | The type of the resource object. You must use file . |
id | Required | string | The unique identifier of the file. |
This request deletes relationships between the specified product and the files.
Request Example
curl -X DELETE https://api.moltin.com/pcm/products/14e055d0-eebb-4090-8594-a0a7aeea2151/relationships/files \
-H "Authorization: Bearer XXXX" \
-H "Content-Type: application/json" \
-d $'{
"data": [
{
"type": "file",
"id": "string"
}
]
}'
Response Example
204 No Content