To Retry the Failed Executions
Description:
You can use this API to retry one or bulk of failed executions in webhook. While retrying, the retry response will not be given in the API response. The max number of retries for a failure allowed is 99 times. Also assume, if 3 executions are retried, A,B and C respectively and A and B executions has exceeded the retry limit then it will be skipped during the execution and the response will be as followed.
{ "url": "/api/v2/zylker/webhooks/8000000002001/executions", "object": "webhook", "data": { "skipped": [ "b8eeec69-ac43-4792-84ee-1df527e5c6ec", "b40e46d5-7dc0-4135-9eff-240cbaa881b2" ] }, "sync_time": "1566598316357" }
Requested Payload
- ids - The specify the IDs to retry the failed executions.
OAuth Scope:
SalesIQ.webhooks.CREATE
URL to retry one failed execution:
Copiedhttps://{zohosalesiq_server_uri}/api/v2/{screenname}/webhooks/{id}/executions/{exec_id}
Example:
Copiedhttps://salesiq.zoho.com/api/v2/zylker/webhooks/8000000002001/executions/eca1f9c8-5acf-463b-96a8-20629cb8fcff
URL to retry bulk failed execution:
Copiedhttps://salesiq.zoho.com/api/v2/{screenname}/webhooks/{id}/executions
Example:
Copiedhttps://salesiq.zoho.com/api/v2/zylker/webhooks/8000000002001/executions
Payload:
Copied{
ids : [ex_id1,ex_id2,ex_id3]
}