GET api/2.0/settings/webhook
Returns a list of the tenant webhooks.
This method doesn't have any parameters.
GET api/2.0/settings/webhook
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
List of tenant webhooks with their config parameters
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>