FlxpointAPI Help CenterBeta

Get Product Rebuild Count

gethttps://api.flxpoint.com/product/builder/re-build/pending-count

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

Get the total number of pending & failed product variants that are being currently being re-built into products.

Request

Example request

get/product/builder/re-build/pending-count
curl -X GET "https://api.flxpoint.com/product/builder/re-build/pending-count" \
  -H "Accept: application/json" \
  -H "X-API-TOKEN: YOUR_TOKEN"

Responses

200OKapplication/json
variantCountinteger
variantFailedCountinteger
parentCountinteger
parentFailedCountinteger
Example response
{
  "variantCount": 0,
  "variantFailedCount": 0,
  "parentCount": 0,
  "parentFailedCount": 0
}
401Unauthorized

No schema documented for this status.

OpenAPI fragment
{
  "get": {
    "summary": "Get Product Rebuild Count",
    "description": "Get the total number of pending & failed product variants that are being currently being re-built into products.",
    "parameters": [],
    "responses": {
      "200": {
        "description": "OK",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ProductReBuilderPendingCountResponse"
            }
          }
        }
      },
      "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