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

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"
[
    {
        "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
    }
]