FlxpointAPI Help CenterBeta

Retry Webhook Event

posthttps://api.flxpoint.com/webhook/event/retry

Use 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

Bodyapplication/json
eventIdsarray[integer]required
A unique identifier for the webhook event.
integer
isAutomatedRetrybooleanrequired
Flag indicating if the retry is an automated retry or not

Example request

post/webhook/event/retry
curl -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