# Remove attribute

You can remove an attribute from a product.

POST /products-by-id/:custom_id/remove_attribute/

Attributes Type Required Description
custom_id integer yes A unique identifier for the product provided by the client.
attribute string yes A name of an attribute you want to remove.

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl -X POST -H "Authorization: Token <your_64_char_api_key>" -H "Content-Type: application/json" -d '{
      "attribute": "Name of the attribute"
    }' "https://<your_app_subdomain>.user.com/api/public/products-by-id/:custom_id/remove_attribute/"