PUT api/2.0/settings/webhook/retry This function requires authentication

Description

Retries all the webhooks with the IDs specified in the request.

Parameters
Name Description Type Example
Ids
sent in body
List of webhook IDs System.Collections.Generic.List{System.Int32}
Example
PUT api/2.0/settings/webhook/retry
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
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
    }
  ]
}