Skip to main content
DELETE
/
v3
/
content
Delete Content
curl --request DELETE \
  --url https://api.proposales.com/v3/content \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "success": true,
    "message": "<string>"
  }
}
variation_id
number
The variation ID of the product to delete. Either this or product_id must be provided.
product_id
number
The product ID to delete. Either this or variation_id must be provided. This is often more convenient when you have the product ID rather than the variation ID.

Example Requests

Using product_id:
DELETE /v3/content?product_id=123
Using variation_id:
DELETE /v3/content?variation_id=789

Response

data
object