IntroductionQuickstartAuthenticationPaginationRate Limit

Search endpoints

Job Search POSTCompany Search POSTTechnographics POST

Account endpoints

Get Credit Balance GETGet Credits Consumption GET

Other

Get Webhook By Id GETGet Aggregated Webhook Event Count GETGet Webhook Event Count GETList Webhook Events GETList All Webhooks GETArchive Webhook PATCHUpdate Webhook PATCHEnable/Disable A Webhook PATCHRetry Webhook Events POSTTest Webhook Url POSTCreate New Webhook POST
TheirStack TheirStack Logo
DocumentationAPI ReferenceWebhooksDatasets
Webhooks

Retry Webhook Events

Retry the webhook events. This endpoint is used to retry the webhook events if they failed.

POST
/v0/webhooks/events/retry

Authorization

Bearer
AuthorizationBearer <token>

In: header

Request Body

application/json

  • webhook_event_ids
    array<integer>required

    IDs of the webhook events to retry.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://api.theirstack.com/v0/webhooks/events/retry" \  -H "Content-Type: application/json" \  -d '{    "webhook_event_ids": [      0    ]  }'
null
{
  "request_id": null,
  "error": {
    "code": "E-001",
    "title": "Not allowed exception",
    "description": "string"
  }
}
{
  "request_id": null,
  "error": {
    "code": "E-001",
    "title": "Not allowed exception",
    "description": "string"
  }
}
{
  "request_id": null,
  "error": {
    "code": "E-001",
    "title": "Not allowed exception",
    "description": "string"
  }
}
{
  "request_id": null,
  "error": {
    "code": "E-001",
    "title": "Not allowed exception",
    "description": "string"
  }
}

How is this guide?

Last updated on

Enable/Disable A Webhook PATCH

By disabling a webhook, it will stop listening to events. When you enable a webhook, it will process all the events that have not been processed yet since you disabled it.

Test Webhook Url POST

This endpoint is used to test the webhook before creating it. It will send a test event to the webhook URL.