List Loss Reasons¶
GET https://api.copper.com/developer_api/v1/loss_reasons
Loss Reasons identify why a particular Opportunity was lost. The Loss Reasons API allows you to retrieve the list of Loss Reasons associated with your Copper account.
Field | Type | Description |
---|---|---|
id | identifier | Unique identifier for the Loss Reason. |
name | string | The name of the Loss Reason. |
Example Requests¶
Loss Reasons¶
curl --location --request GET "https://api.copper.com/developer_api/v1/loss_reasons" \
--header "X-PW-AccessToken: YOUR_TOKEN_HERE" \
--header "X-PW-Application: developer_api" \
--header "X-PW-UserEmail: YOUR_EMAIL_HERE" \
--header "Content-Type: application/json"
[
{
"id": 308806,
"name": "Price"
},
{
"id": 308807,
"name": "Features"
},
{
"id": 308808,
"name": "Competitor"
}
]