Get Started
API backend
API system
More information

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

application/json

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

text/xml

<result>
  <status>0</status>
  <response>
    <Id>1234</Id>
    <Uri>some text</Uri>
    <SecretKey>some text</SecretKey>
    <Enabled>True</Enabled>
  </response>
</result>