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

POST /v1/webhooks/re-push

Request Body

hooksRequestId
string
required

Unique identifier of the webhook event you want to re-push.

Response Body

code
string
required

Response code indicating the status of the request.

description
string
required

Description of the response.

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