PostifyPostify Docs

List webhook endpoints

Lists the organization's webhook endpoints with their subscription and failure-ladder state. Signing secrets are never returned here — they are shown once at creation and can be rolled in Settings → Webhooks.

GET
/v1/webhook-endpoints

Lists the organization's webhook endpoints with their subscription and failure-ladder state. Signing secrets are never returned here — they are shown once at creation and can be rolled in Settings → Webhooks.

Authorization

AuthorizationBearer <token>

Organization API key as a Bearer token (postify_live_…).

In: header

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/webhook-endpoints"
{  "data": [    {      "id": "string",      "url": "string",      "event_types": [        "post.published"      ],      "enabled": true,      "auto_disabled_at": "2019-08-24T14:15:22Z",      "consecutive_failures": -9007199254740991,      "created_at": "2019-08-24T14:15:22Z"    }  ]}