Skip to content

Get Custom Activity Type

GET https://api.copper.com/developer_api/v1/custom_activity_types/{{custom_activity_type_id}}

Example Requests

Get Custom Activity Type

1
2
3
4
5
curl --location --request GET "https://api.copper.com/developer_api/v1/custom_activity_types/4" \
  --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
{
    "id": 4,
    "company_id": 1,
    "icon_type": "Event",
    "is_disabled": false,
    "is_interaction": true,
    "name": "Custom Meeting",
    "is_default_task_type": null
}