Wire Docs

List webhook endpoints

GET
/v1/webhook_endpoints

Authorization

bearerAuth
AuthorizationBearer <token>

API key as a bearer token (Authorization: Bearer sk_live_...).

In: header

Query Parameters

limit?integer
starting_after?string

Cursor — an object id; returns the page after it.

Response Body

application/json

curl -X GET "https://example.com/v1/webhook_endpoints"
{
  "object": "list",
  "url": "string",
  "has_more": true,
  "data": [
    {
      "id": "string",
      "object": "webhook_endpoint",
      "url": "string",
      "enabled_events": [
        "string"
      ],
      "status": "enabled",
      "livemode": true,
      "created": 0
    }
  ]
}