List client overages

GET https://api.tamio.com/v2/clients/overage/list/{uuid}

Returns a paginated list of quota overages or billing overages for a specific client. Supports filtering and sorting.

Path Parameters

uuid string*

UUID of the client whose overages to list

Query Parameters

page integer

Page number for pagination (1-based)

per_page integer

Number of overage records per page

order string

Sort order for the results

ascdesc
sort_by string

Field to sort overage records by

customertotalpaymentdatestatusid
filter string

Search filter to match overage records

Responses

200 Overages listed successfully

Overages listed successfully

status integer
400 Validation or business-logic error. Possible `error_code` values:
401 Unauthorized – invalid or missing Bearer token
/clients/overage/list/{uuid}
1const response = await fetch("https://api.tamio.com/v2/clients/overage/list/{uuid}", {
2 headers: {
3 "Authorization": "Bearer YOUR_API_KEY",
4 "Accept": "application/json"
5 }
6});
7const data = await response.json();
Responses
{
  "status": 200
}