Skip to content

List Activity Types

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

Activity Types identify the types of Activities that occur in Copper. The Activity Types Developer API allows you to retrieve the list of Activity Types associated with your Copper account. There are two categories of Activity Type.

Activity Types with category "user" describe user-entered Activities. By default, Copper has three user-entered activity types: Notes, Phone Calls, and Meetings. Notes have a hard-coded ID of 0. Phone Calls and Meetings are assigned IDs when your Copper account is created. Users may also create Custom Activity Types through the Settings page. These will be assigned IDs when they are created.

Custom Activity Types that have been removed from the list in the Settings page are not deleted from Copper, because they are necessary to correctly handle Activities of those types. These Activity Types are visible through the Developer API for Activity Types, and can be used for filtering Activity searches, but cannot be used to create new Activities.

Activity Types with category "system" describe system-generated Activities. There are currently two system activities: "Property Changed" and "Pipeline Stage Changed". They have hard-coded IDs of 1 and 3 respectively.

Field Type Details
id identifier The id of the Activity Type.
category string The category of the Activity Type. Valid categories: user, system.
name string The name of the Activity Type.
is_disabled boolean For Custom Activity Types, whether or not the Activity Type is disabled.
count_as_interaction boolean For Activity Types of category "user", whether or not Activities of this type are counted toward interactions data.

When supplied as parameters for Activity creation or search, Activity Type objects need only specify the "category" and "id" fields. Any other values provided will be ignored.

Example Requests

List Activity Types

1
2
3
4
5
curl --location --request GET "https://api.copper.com/developer_api/v1/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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
  "user": [
    {
      "id": 0,
      "category": "user",
      "name": "Note",
      "is_disabled": false,
      "count_as_interaction": false
    },
    {
      "id": 190711,
      "category": "user",
      "name": "Phone Call",
      "is_disabled": false,
      "count_as_interaction": true
    },
    {
      "id": 190712,
      "category": "user",
      "name": "Meeting",
      "is_disabled": false,
      "count_as_interaction": true
    },
    {
      "id": 191400,
      "category": "user",
      "name": "Demo call",
      "is_disabled": false,
      "count_as_interaction": true
    },
    {
      "id": 194674,
      "category": "user",
      "name": "Call - no connect",
      "is_disabled": false,
      "count_as_interaction": true
    }
  ],
  "system": [
    {
      "id": 1,
      "category": "system",
      "name": "Property Changed",
      "is_disabled": false,
      "count_as_interaction": false
    },
    {
      "id": 3,
      "category": "system",
      "name": "Pipeline Stage Changed",
      "is_disabled": false,
      "count_as_interaction": false
    }
  ]
}