Skip to content

List Customer Sources

GET https://api.copper.com/developer_api/v1/customer_sources

Customer Sources identify where a particular Lead or Opportunity came from. The Customer Sources API allows you to retrieve the list of Customer Sources associated with your Copper account.

Field Type Details
id identifier Unique* identifier for the Customer Source.
name string Label for the Customer Source definition.

Example Requests

Customer Sources

1
2
3
4
5
curl --location --request GET "https://api.copper.com/developer_api/v1/customer_sources" \
  --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": 331240,
    "name": "Email"
  },
  {
    "id": 331241,
    "name": "Cold Call"
  },
  {
    "id": 331242,
    "name": "Advertising"
  }
]