v1.0.0
OpenAPI 3.1.0

Get a reporting webhook

US region

Client Libraries

Get a reporting webhook

Returns information about a specific reporting webhook.

Path Parameters
  • webhook_id
    Type: integer
    required

    The identifier of a webhook.

Responses
  • application/json
  • 404

    The webhook ID does not exist.

  • 429

    Your request is over the 10-per-second limit.

Request Example for get/v1/reporting_webhooks/{webhook_id}
curl https://api.customer.io/v1/reporting_webhooks/1 \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "name": "my cool webhook",
  "id": 4,
  "type": "webhook",
  "endpoint": "https://example.com/webhook",
  "disabled": false,
  "full_resolution": true,
  "with_content": false,
  "events": [
    "email_failed",
    "webhook_failed"
  ]
}