v1.0.0
OpenAPI 3.1.0

List reporting webhooks

US region

Client Libraries

List reporting webhooks

Return a list of all of your reporting webhooks

Responses
  • application/json
  • application/json
Request Example for get/v1/reporting_webhooks
curl https://api.customer.io/v1/reporting_webhooks \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "reporting_webhooks": [
    {
      "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"
      ]
    }
  ]
}