Get Listing Rebuilder Count
get
https://api.flxpoint.com/listing/builder/re-build/countUse this when you want to pull listing 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 a count of the total number of listing that are pending a rebuild
Request
Example request
get
/listing/builder/re-build/countcurl -X GET "https://api.flxpoint.com/listing/builder/re-build/count" \
-H "Accept: application/json" \
-H "X-API-TOKEN: YOUR_TOKEN"Responses
200OKapplication/json
variantCountintegervariantFailedCountintegerparentCountintegerparentFailedCountintegerExample response
{
"variantCount": 0,
"variantFailedCount": 0,
"parentCount": 0,
"parentFailedCount": 0
}401Unauthorized
No schema documented for this status.
OpenAPI fragment
{
"get": {
"summary": "Get Listing Rebuilder Count",
"description": "Get a count of the total number of listing that are pending a rebuild",
"parameters": [],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ListingReBuilderPendingCountResponse"
}
}
}
},
"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