Get Listing Builder Count
get
https://api.flxpoint.com/listing/{channelId}/builder/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 the count of the total listings pending a build in the given channel
Request
Example request
get
/listing/{channelId}/builder/countcurl -X GET "https://api.flxpoint.com/listing/{channelId}/builder/count" \
-H "Accept: application/json" \
-H "X-API-TOKEN: YOUR_TOKEN"Responses
200OKapplication/json
countintegerrequiredExample response
{
"count": 0
}401Unauthorized
No schema documented for this status.
OpenAPI fragment
{
"get": {
"summary": "Get Listing Builder Count",
"description": "Get the count of the total listings pending a build in the given channel",
"parameters": [],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GenericCount"
}
}
}
},
"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