Skip to content

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

1
2
3
4
5
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"
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
[
  {
    "id": 308806,
    "name": "Price"
  },
  {
    "id": 308807,
    "name": "Features"
  },
  {
    "id": 308808,
    "name": "Competitor"
  }
]