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¶
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"
[
{
"id": 451490,
"name": "Potential Customer"
},
{
"id": 451491,
"name": "Current Customer"
},
{
"id": 451492,
"name": "Uncategorized"
},
{
"id": 451493,
"name": "Other"
}
]