[POST] .../v1/integrationwebhook/get
Returns a list of webhooks. Use this method to list webhook event types available for external integrations before configuring subscriptions. The method has no request body and returns IntegrationWebhook records with the public event name and display order. The current request user must have integration select permission and the metadata is loaded from the REGOS integration registry. Denied access, upstream integration metadata errors and registry/storage failures are returned as HTTP 200 ErrorResult business errors.
Request Parameters
No request body.
Request Example
{}
Response Parameters
| Name | Type | Description |
|---|---|---|
| ok | Boolean | Indicates whether the request completed successfully. |
| result | Array of IntegrationWebhook | Result array. |
Response Example
{
"ok": true,
"result": [
{
"name": "ItemAdded",
"order": 100
}
]
}