Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.sertexity.com/llms.txt

Use this file to discover all available pages before exploring further.

List Webhooks

Return all registered webhooks for the authenticated user. GET /webhooks  ·  🔒 Auth required

Response 200 OK

{
  "data": [
    {
      "id": "wh_01jz1b2k4n7p9q0r",
      "url": "https://yourapp.com/hooks/sertexity",
      "events": ["operation.completed", "operation.failed"],
      "active": true,
      "created_at": "2024-09-15T10:30:00Z"
    }
  ],
  "meta": { "total": 1 }
}

Example

curl https://api.sertexity.com/v1/webhooks \
  -H "Authorization: Bearer <access_token>"