Retries all the webhooks with the IDs specified in the request.
Name | Description | Type | Example |
Ids
sent in body
|
List of webhook IDs | System.Collections.Generic.List{System.Int32} |
PUT api/2.0/settings/webhook/retry Host: yourportal.onlyoffice.com Content-Type: application/json Accept: application/json
Logs of the webhook activities
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>