curl --location 'https://api.nomba.com/v1/webhooks/bulk-re-push' \
--header 'Authorization: Bearer <token> \
--header 'Content-Type: application/json' \
--header 'accountId: <accountId>' \
--data '{
    "hooksRequestIds": [
      "6703XXXd1-158a-42XX-8f0b-XXXXXXXXX",
      "703XXXd1-158a-42XX-8f0b-XXXXXXXXX",
      "8703XXXd1-158a-42XX-8f0b-XXXXXXXXX"
    ]
  }'
{
    "code": "200",
    "description": "Webhook events bulk re-pushed successfully"
}

Use this endpoint to retry the delivery of multiple webhook events using their unique hooksRequestIds.

POST /v1/webhooks/bulk-re-push

Request Body

hooksRequestIds
array
required

An array of hooksRequestId values corresponding to the webhook events you want to re-push.

Response Body

code
string
required

Response code indicating the status of the request.

description
string
required

Message describing the result of the re-push attempt.

curl --location 'https://api.nomba.com/v1/webhooks/bulk-re-push' \
--header 'Authorization: Bearer <token> \
--header 'Content-Type: application/json' \
--header 'accountId: <accountId>' \
--data '{
    "hooksRequestIds": [
      "6703XXXd1-158a-42XX-8f0b-XXXXXXXXX",
      "703XXXd1-158a-42XX-8f0b-XXXXXXXXX",
      "8703XXXd1-158a-42XX-8f0b-XXXXXXXXX"
    ]
  }'
{
    "code": "200",
    "description": "Webhook events bulk re-pushed successfully"
}