Rebuild Next Product
get
https://api.flxpoint.com/product/builder/re-build/nextUse 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.
Will re-build the next queued parent/variants. This endpoint is only allowed to be consumed via internal flxpoint services.
Request
Example request
get
/product/builder/re-build/nextcurl -X GET "https://api.flxpoint.com/product/builder/re-build/next" \
-H "Accept: application/json" \
-H "X-API-TOKEN: YOUR_TOKEN"Responses
200OKapplication/json
hasMorebooleanrequiredparentHadErrorbooleanproductParentIdintegerproductVariantIdsWithErrorarray[integer]integer
productVariantIdsarray[integer]integer
Example response
{
"hasMore": true,
"parentHadError": true,
"productParentId": 0,
"productVariantIdsWithError": [
0
],
"productVariantIds": [
0
]
}401Unauthorized
No schema documented for this status.
OpenAPI fragment
{
"get": {
"summary": "Rebuild Next Product",
"description": "Will re-build the next queued parent/variants. This endpoint is only allowed to be consumed via internal flxpoint services.",
"parameters": [],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"hasMore": {
"type": "boolean"
},
"parentHadError": {
"type": "boolean"
},
"productParentId": {
"type": "integer"
},
"productVariantIdsWithError": {
"type": "array",
"items": {
"type": "integer"
}
},
"productVariantIds": {
"type": "array",
"items": {
"type": "integer"
}
}
},
"required": [
"hasMore"
]
}
}
}
},
"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