Counting Objects
To get a count of the number of objects within ChargeOver, append /_count
to the endpoint.
You can also count the number of objects matching a filter/query by using your ?where=...
query on the /_count
endpoint.
API EXAMPLES
// Get the total number of customers
GET /api/v3/customer/_count
// Get the number of customers who have a company name containing "Test"
GET /api/v3/customer/_count?where=company:CONTAINS:test
API RESPONSE BODY
{
"code": 200,
"status": "OK",
"message": "",
"response": 25
}