FlxpointAPI Help CenterBeta

Get Webhook Configuration Event Logs

gethttps://api.flxpoint.com/webhook/configurations/{id}/event-logs

Use this when you want to pull 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.

This endpoint will fetch back the event log against a webhook configuration

Request

Query parameters
  • pagequeryinteger

    page number

  • pageSizequeryinteger

    number of elements per page

  • webhookDeliveryStatusqueryany

Example request

get/webhook/configurations/{id}/event-logs
curl -X GET "https://api.flxpoint.com/webhook/configurations/{id}/event-logs" \
  -H "Accept: application/json" \
  -H "X-API-TOKEN: YOUR_TOKEN"

Responses

200OKapplication/json
array[WebhookLog]
idinteger
Webhook Log ID used for event identification
statusWebhookDeliveryStatus
Used to track webhook delivery status
allowedprocessingpublishedinternal_failureexternal_failure
eventTypeWebhookEvents
List of events supported to share over webhook
allowedFulfillmentRequestProcessingEventOrderImportedEvent
eventKeystring
Unique identifier for the associated event type
createdAtstring (date-time)
Date time when the event was created within flxpoint system
lastTriedAtstring (date-time)
Date time when the event was last tried for delivery
nextTryAtstring (date-time)
Date time when the event will be tried again for delivery
publishedAtstring (date-time)
Date time when the event was successfully delivered
retryCountinteger
Date time when the event was successfully delivered
manualRetryCountinteger
Date time when the event was successfully delivered
statusCodestring
Date time when the event was successfully delivered
statusMessagestring
Date time when the event was successfully delivered
Example response
[
  {
    "id": 0,
    "status": "processing",
    "eventType": "FulfillmentRequestProcessingEvent",
    "eventKey": "string",
    "createdAt": "2026-04-20T00:00:00Z",
    "lastTriedAt": "2026-04-20T00:00:00Z",
    "nextTryAt": "2026-04-20T00:00:00Z",
    "publishedAt": "2026-04-20T00:00:00Z",
    "retryCount": 0,
    "manualRetryCount": 0,
    "statusCode": "string",
    "statusMessage": "string"
  }
]
401Unauthorized

No schema documented for this status.

404Not Found

No schema documented for this status.

OpenAPI fragment
{
  "get": {
    "summary": "Get Webhook Configuration Event Logs",
    "description": "This endpoint will fetch back the event log against a webhook configuration",
    "parameters": [
      {
        "name": "page",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 1
        },
        "description": "page number"
      },
      {
        "name": "pageSize",
        "in": "query",
        "required": false,
        "schema": {
          "type": "integer",
          "default": 50,
          "maximum": 100
        },
        "description": "number of elements per page"
      },
      {
        "schema": {
          "$ref": "#/components/schemas/WebhookDeliveryStatus"
        },
        "name": "webhookDeliveryStatus",
        "in": "query",
        "required": false
      }
    ],
    "responses": {
      "200": {
        "description": "OK",
        "content": {
          "application/json": {
            "schema": {
              "type": "array",
              "items": {
                "$ref": "#/components/schemas/WebhookLog"
              }
            }
          }
        }
      },
      "401": {
        "description": "Unauthorized"
      },
      "404": {
        "description": "Not Found"
      }
    }
  }
}
Ready to run it? Send the curl from your terminal or Postman, or use the interactive tester in Stoplight.Open in Stoplight