FlxpointAPI Help CenterBeta

Get Account

gethttps://api.flxpoint.com/account

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

Only account API Tokens can use this endpoint

Request

Example request

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

Responses

200OKapplication/json
idintegerrequired
productPriceWorkflowEventIdinteger
defaultOrderRoutingGroupIdinteger
orderRoutingWorkflowEventIdinteger
subdomainstring
brandNamestring
companyNamestring
Example response
{
  "id": 0,
  "productPriceWorkflowEventId": 0,
  "defaultOrderRoutingGroupId": 0,
  "orderRoutingWorkflowEventId": 0,
  "subdomain": "string",
  "brandName": "string",
  "companyName": "string"
}
401Unauthorized

No schema documented for this status.

OpenAPI fragment
{
  "get": {
    "summary": "Get Account",
    "description": "Only account API Tokens can use this endpoint",
    "parameters": [],
    "responses": {
      "200": {
        "description": "OK",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/Account"
            }
          }
        }
      },
      "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