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

Description

Returns the logs of the webhook activities.

Parameters
Name Description Type Example
deliveryFrom
sent in url
Delivey start time
optional
Date and Time 2011-10-1
deliveryTo
sent in url
Delivey end time
optional
Date and Time 2011-10-1
hookUri
sent in url
Hook URI string some text
webhookId
sent in url
Webhook ID
optional
number 1234
configId
sent in url
Config ID
optional
number 1234
eventId
sent in url
Event ID
optional
number 1234
groupStatus
sent in url
Webhook group status
optional
ASC.Webhooks.Core.WebhookGroupStatus
Example
GET api/2.0/settings/webhooks/log
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "deliveryFrom": "2008-04-10T06-30-00.000Z",
  "deliveryTo": "2008-04-10T06-30-00.000Z",
  "hookUri": "some text",
  "webhookId": 1234,
  "configId": 1234,
  "eventId": 1234,
  "groupStatus": null
}
Returns

Logs of the webhook activities

Example Response
{
  "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
    }
  ]
}