Skip to content

View subscription by ID

GET https://api.copper.com/developer_api/v1/webhooks{{example_webhook_id}}

Example Requests

See Webhook by ID

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
{
  "id": 25347,
  "target": "https://your.endpoint.here",
  "type": "person",
  "event": "update",
  "secret": {
    "secret": "hook_source",
    "key": "copper_notifications"
  },
  "headers": {
    "Authentication": "Bearer token"
  },
  "custom_field_computed_values": false,
  "created_at": 1496787761
}