latestOpenAPI 3.1.0Proprietary - Prezent, Inc.2026-08-114675175.5 KB

a01cb764a085

Webhooks

List webhook subscriptions

Returns the subscriptions owned by the calling API key. Excludes soft-deleted rows. Use the standard cursor-pagination parameters — see Developer Guide → Pagination.

get/api/v1/webhook-subscriptions

Query parameters

limitinteger
cursorstring

Response

Paginated subscription list.

successboolean

true on success (omitted by some legacy handlers).

Example response

{
  "data": {
    "items": [
      {
        "id": "whsub_3f7a9b1c8d2e4f5a6b7c8d9e0f1a2b3c",
        "url": "https://hooks.example.com/prezent",
        "secret_prefix": "whsec_",
        "events": [
          "autogeneration.completed",
          "autogeneration.failed"
        ],
        "description": "Push completions into our deal-room worker."
      }
    ]
  }
}