v1

latestOpenAPI 3.0.0proprietary2026-07-261695971.5 MB
Webhook

List Webhook subscriptions

Returns the list of all Webhook subscriptions in your Organization.

get/webhooks

Response

OK

idstring uuid required
endpointstring uri required

HTTPS target URL that will receive webhook POST requests. It must be publicly accessible and may include a specified port.

descriptionstring nullable required

Short description of the webhook

sandboxboolean required
secret_keystring required

Autogenerated 32 bytes key

auto_retryboolean required

If a Webhook request fails for any reason, Youtrust will retry the request 8 times using a back-off mechanism after: 2, 6, 30, 60, 300, 1080, 1440, 2880 min

enabledboolean required

Is the webhook enabled?

created_atstring date-time required
updated_atstring date-time nullable required

Example response

[
  {
    "id": "89120884-d29a-4b1a-ac7b-a9e73a872795",
    "endpoint": "https://example.com:port/my-endpoint",
    "description": "Lorem Ipsum",
    "workspaces": [
      "9a93d3b5-fb3b-4abf-9e70-26315b33506c"
    ],
    "created_at": "2024-01-18T22:59:00Z",
    "updated_at": "2024-01-18T22:59:00Z"
  }
]