# Create deal loss reason
You add a deal loss reason.
POST
/deal-loss-reasons/
Attributes | Type | Required | Description |
---|---|---|---|
reason | string | yes | A reason for a lost deal. |
# Request
- CURL
- JavaScript
- PHP
- Python
curl -X POST -H "Authorization: Token <your_64_char_api_key>" -H "Content-Type: application/json"
-H "Accept: */*; version=2" -d '{
"reason": "my custom reason"
}' "https://<your_app_subdomain>.user.com/api/public/deal-loss-reasons/"
# Response
{
"id": 5,
"reason": "my custom reason"
}