Skip to content

List all subscriptions

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

Example Requests

List all subscriptions

1
2
3
4
5
curl --location --request GET "https://api.copper.com/developer_api/v1/webhooks" \
  --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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[
  {
    "id": 17065,
    "target": "https://your.endpoint.here",
    "type": "lead",
    "event": "update",
    "secret": {
      "secret": "hook_source",
      "key": "copper_notifications"
    },
    "custom_field_computed_values": false,
    "created_at": 1489173015
  },
  {
    "id": 25347,
    "target": "https://your.endpoint.here",
    "type": "person",
    "event": "update",
    "secret": {
      "secret": "hook_source",
      "key": "copper_notifications"
    },
    "custom_field_computed_values": true,
    "created_at": 1496787761
  },
  {
    "id": 39285,
    "target": "https://hookb.in/KAnAXW5q",
    "type": "activity_log",
    "event": "update",
    "secret": {
      "secret": "hook_source",
      "key": "copper_notifications"
    },
    "custom_field_computed_values": false,
    "created_at": 1510271719
  },
  {
    "id": 39286,
    "target": "https://hookb.in/KAnAXW5q",
    "type": "activity_log",
    "event": "delete",
    "secret": {
      "secret": "hook_source",
      "key": "copper_notifications"
    },
    "custom_field_computed_values": true,
    "created_at": 1510271965
  },
  {
    "id": 39287,
    "target": "https://hookbin.com/bin/KAnAXW5q",
    "type": "lead",
    "event": "new",
    "secret": {
      "secret": "hook_source",
      "key": "copper_notifications"
    },
    "custom_field_computed_values": false,
    "created_at": 1510272356
  },
  {
    "id": 39288,
    "target": "https://hookbin.com/bin/KAnAXW5q",
    "type": "activity_log",
    "event": "new",
    "secret": {
      "secret": "hook_source",
      "key": "copper_notifications"
    },
    "custom_field_computed_values": true,
    "created_at": 1510272369
  }
]