# Remove attribute

You can remove an attribute from a product.

POST /products/:id/remove_attribute/

Attributes Type Required Description
id integer yes A unique identifier for the product which is given by User.com automatically.
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 "Accept: */*; version=2" -H "Content-Type: application/json" -d '{
      "attribute": "Name of the attribute"
    }' "https://<your_app_subdomain>.user.com/api/public/products/:id/remove_attribute/"