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

Description

Returns the logs of the webhook activities.

Parameters
Name Description Type Example
Delivery
sent in body
Time when a webhook was delivered System.Nullable{System.DateTime}
HookUri
sent in body
Hook URI System.String
WebhookId
sent in body
Webhook ID System.Int32
Example
GET api/2.0/settings/webhooks/log
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "HookUri": "some text",
  "WebhookId": 1234
}
Returns

Logs of the webhook activities

Example Response

application/json

{
  "status": 0,
  "response": [
    {
      "Id": 1234,
      "ConfigName": "some text",
      "CreationTime": "2008-04-10T06-30-00.000Z",
      "Method": "some text",
      "Route": "some text",
      "RequestHeaders": "some text",
      "RequestPayload": "some text",
      "ResponseHeaders": "some text",
      "ResponsePayload": "some text",
      "Status": 1234
    }
  ]
}

text/xml

<result>
  <status>0</status>
  <response>
    <Id>1234</Id>
    <ConfigName>some text</ConfigName>
    <CreationTime>2008-04-10T06-30-00.000Z</CreationTime>
    <Method>some text</Method>
    <Route>some text</Route>
    <RequestHeaders>some text</RequestHeaders>
    <RequestPayload>some text</RequestPayload>
    <ResponseHeaders>some text</ResponseHeaders>
    <ResponsePayload>some text</ResponsePayload>
    <Status>1234</Status>
  </response>
</result>