Skip to content

List All Custom Activity Types

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

Example Requests

List All Custom Activity Types

1
2
3
4
5
curl --location --request GET "https://api.copper.com/developer_api/v1/custom_activity_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
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[
    {
        "id": 1,
        "company_id": 1,
        "icon_type": "Phone",
        "is_disabled": false,
        "is_interaction": true,
        "name": "Phone Call",
        "is_default_task_type": null
    },
    {
        "id": 2,
        "company_id": 1,
        "icon_type": "Event",
        "is_disabled": false,
        "is_interaction": true,
        "name": "Meeting",
        "is_default_task_type": null
    },
    {
        "id": 3,
        "company_id": 1,
        "icon_type": "Todo",
        "is_disabled": false,
        "is_interaction": false,
        "name": "To Do",
        "is_default_task_type": true
    },
    {
        "id": 4,
        "company_id": 1,
        "icon_type": "Event",
        "is_disabled": false,
        "is_interaction": true,
        "name": "Custom Meeting",
        "is_default_task_type": null
    }
]