Get Product Builder Count
get
https://api.flxpoint.com/product/builder/pending-countUse 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 inventory variants that are being currently being built into products.
Request
Example request
get
/product/builder/pending-countcurl -X GET "https://api.flxpoint.com/product/builder/pending-count" \
-H "Accept: application/json" \
-H "X-API-TOKEN: YOUR_TOKEN"Responses
200OKapplication/json
countintegerrequiredfailedCountintegerExample response
{
"count": 0,
"failedCount": 0
}401Unauthorized
No schema documented for this status.
OpenAPI fragment
{
"get": {
"summary": "Get Product Builder Count",
"description": "Get the total number of pending & failed inventory variants that are being currently being built into products.",
"parameters": [],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProductBuilderPendingCountResponse"
}
}
}
},
"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