docs

List webhook endpoints

Lists all webhook endpoints for the merchant.

GET
/webhook-endpoints

Lists all webhook endpoints for the merchant.

AuthorizationBearer <token>

API key for merchant integrations. Send as Authorization: Bearer <your key>.

In: header

Response Body

application/json

curl -X GET "https://example.com/webhook-endpoints"
{
  "object": "list",
  "data": [
    {
      "id": "we_abc123def456",
      "object": "webhook_endpoint",
      "url": "https://example.com/webhooks",
      "description": "Production webhook",
      "status": "enabled",
      "enabledEvents": [
        "charge.succeeded",
        "payment_intent.created"
      ],
      "livemode": false,
      "secret": "whsec_abc123def456ghi789",
      "metadata": {
        "environment": "production"
      },
      "createdAt": "2024-01-15T10:30:00Z",
      "updatedAt": "2024-01-15T10:30:00Z"
    }
  ]
}