Get Usage History
GET/v2/usage/history/
Get the usage history for the user.
Returns a list of dictionaries containing the start date, end date, usage, and usage limit for each period since user sign up.
Responses
- 200
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
start_date Start Date (string)required
end_date End Date (string)required
usage Usage (integer)required
limit Limit (integer)required
[
{
"start_date": "string",
"end_date": "string",
"usage": 0,
"limit": 0
}
]
Loading...