GET api/2.0/settings/webhook This function requires authentication

Description

Returns a list of the tenant webhooks.

Parameters

This method doesn't have any parameters.

Example
GET api/2.0/settings/webhook
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

List of tenant webhooks with their config parameters

Example Response
{
  "status": 0,
  "response": [
    {
      "Id": 1234,
      "Name": "some text",
      "Uri": "some text",
      "SecretKey": "some text",
      "Enabled": true,
      "SSL": true
    }
  ]
}