Get Started
API backend
API system
More information

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

Description

Returns settings of all webhooks.

Parameters

This method doesn't have any parameters.

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

List of webhook settings

Example Response

application/json

{
  "status": 0,
  "response": [
    {
      "Id": 1234,
      "Route": "some text",
      "Method": "some text",
      "Disable": true,
      "Name": "some text",
      "Description": "some text",
      "Endpoint": "some text"
    }
  ]
}

text/xml

<result>
  <status>0</status>
  <response>
    <Id>1234</Id>
    <Route>some text</Route>
    <Method>some text</Method>
    <Disable>True</Disable>
    <Name>some text</Name>
    <Description>some text</Description>
    <Endpoint>some text</Endpoint>
  </response>
</result>