Get
[POST] .../v1/webhook/get
Returns webhook event action names. Discover the public webhook action names before configuring an external integration or validating incoming webhook payloads. The response returns an array of action-name strings from the public webhook event registry and does not change server state. The method is anonymous, does not perform a permission check and requires no request body. There are no normal business-validation errors; unexpected infrastructure failures follow the standard HTTP 200 ErrorResult business-error contract.
Request Parameters
No request body.
Request Example
{}
Response Parameters
| Name | Type | Description |
|---|---|---|
| ok | Boolean | Indicates whether the request completed successfully. |
| result | Array of String | Result array. |
Response Example
{
"ok": true,
"result": [
"ItemAdded",
"ItemEdited",
"UserAdded"
]
}