# Remove attribute
Keep in mind that you have to use full original name as an attribute name. Other names will result in 404 Not Found response and no changes in the user profile.
POST
/users/:id/remove_attribute/
Attributes | Type | Required | Description |
---|---|---|---|
id | string | no | A unique identifier for the user which is given by User.com automatically. |
attribute | string | yes | A name of your attribute. |
# 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/users/:id/remove_attribute/"