Retry Webhook Event
post
https://api.flxpoint.com/webhook/event/retryUse this when you want to create webhook data through the API.
๐ X-API-TOKENโฑ 2 req/sToken: Account ยท Source ยท Channel
This page explains the endpoint. To send a live test request, use the interactive tester in Stoplight or your own Postman / HTTP client.
Retry a Webhook Event for an account
Request
Body
application/jsoneventIdsarray[integer]requiredA unique identifier for the webhook event.
integer
isAutomatedRetrybooleanrequiredFlag indicating if the retry is an automated retry or not
Example request
post
/webhook/event/retrycurl -X POST "https://api.flxpoint.com/webhook/event/retry" \
-H "Accept: application/json" \
-H "X-API-TOKEN: YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"eventIds": [
0
],
"isAutomatedRetry": true
}'Example body ยท application/json
{
"eventIds": [
0
],
"isAutomatedRetry": true
}Responses
202Accepted
No schema documented for this status.
400Bad Request
No schema documented for this status.
401Unauthorized
No schema documented for this status.
OpenAPI fragment
{
"post": {
"summary": "Retry Webhook Event",
"description": "Retry a Webhook Event for an account",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RetryWebhookEventRequest"
}
}
}
},
"responses": {
"202": {
"description": "Accepted"
},
"400": {
"description": "Bad Request"
},
"401": {
"description": "Unauthorized"
}
}
}
}Ready to run it? Send the curl from your terminal or Postman, or use the interactive tester in Stoplight.Open in Stoplight