FlxpointAPI Help CenterBeta

List Webhook Configurations for an account

gethttps://api.flxpoint.com/webhhok/configurations

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.

Returns Webhook Configuration configured for an account. Requires account token.

Request

Example request

get/webhhok/configurations
curl -X GET "https://api.flxpoint.com/webhhok/configurations" \
  -H "Accept: application/json" \
  -H "X-API-TOKEN: YOUR_TOKEN"

Responses

200OKapplication/json
array[WebhookConfiguration]
idintegerrequired
Webhook Configuration ID used for identification
configurationNamestringrequired
Name of the configured Webhook
sourceIdinteger
Source ID against which the webhook is setup
channelIdinteger
Channel ID against which the webhook is setup
webhookUrlstringrequired
Url for the webhook configuration
notificationEmailstring
Email address where webhook status updates are sent
statusWebhookConfigurationStatus
allowedactivedisableddeleted
subscribedEventsarray[WebhookEvents]required
WebhookEvents
List of events supported to share over webhook
allowedFulfillmentRequestProcessingEventOrderImportedEvent
createdAtstring (date-time)
updatedAtstring (date-time)
Example response
[
  {
    "id": 0,
    "configurationName": "string",
    "sourceId": 0,
    "channelId": 0,
    "webhookUrl": "string",
    "notificationEmail": "string",
    "status": "active",
    "subscribedEvents": [
      "FulfillmentRequestProcessingEvent"
    ],
    "createdAt": "2026-04-20T00:00:00Z",
    "updatedAt": "2026-04-20T00:00:00Z"
  }
]
401Unauthorized

No schema documented for this status.

OpenAPI fragment
{
  "get": {
    "summary": "List Webhook Configurations for an account",
    "description": "Returns Webhook Configuration configured for an account. Requires account token.",
    "parameters": [],
    "responses": {
      "200": {
        "description": "OK",
        "content": {
          "application/json": {
            "schema": {
              "type": "array",
              "items": {
                "$ref": "#/components/schemas/WebhookConfiguration"
              }
            }
          }
        }
      },
      "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