Skip to main content
POST
/
api
/
v2
/
orders
/
webhooks
/
{webhookId}
/
events
/
retry-failed
cURL
curl -X POST https://api.bizmori.com/api/v2/orders/webhooks/WEBHOOK_ID/events/retry-failed \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "fromDate": "2026-01-01",
    "toDate": "2026-01-07"
  }'
{
  "data": {
    "total": 123,
    "succeeded": 123,
    "failed": 123
  }
}

Authorizations

Authorization
string
header
required

API Key for external client access

Path Parameters

webhookId
integer
required

Webhook ID

Body

application/json
fromDate
string<date>
required

Start date (ISO 8601 format, e.g. 2026-01-01)

Example:

"2026-01-01"

toDate
string<date>
required

End date (ISO 8601 format, e.g. 2026-01-07). Must be within 7 days of fromDate.

Example:

"2026-01-07"

Response

Success

data
object