DELETE api/2.0/settings/webhook
Removes the tenant webhook with the ID specified in the request.
Name |
Description |
Type |
Example |
id
sent in url
|
Webhook ID
|
number
|
1234
|
DELETE api/2.0/settings/webhook?id=1234
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Tenant webhook with its 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>