Skip to content

List Contact Types

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

Contact Types are categories into which you can place your People and Companies to classify your relationships with them. The Contact Types API allows you to retrieve the list of Contact Types associated with your Copper account.

Field Type Details
id identifier Unique identifier for the Contact Type.
name string The name of the Contact Type.

Examples

List Contact Types

1
2
3
4
5
curl --location --request GET "https://api.copper.com/developer_api/v1/contact_types" \
  --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
15
16
17
18
[
  {
    "id": 451490,
    "name": "Potential Customer"
  },
  {
    "id": 451491,
    "name": "Current Customer"
  },
  {
    "id": 451492,
    "name": "Uncategorized"
  },
  {
    "id": 451493,
    "name": "Other"
  }
]