POST /usage
Create a new usage event. Each event requires a category
key and accepts any
additional JSON serializable key-value pairs.
This endpoint requires an application API key.
URL : https://api.trckrspace.com/usage
Method : POST
Auth required : YES
Auth headers : {'X-Api-Key': '{api_key}'}
Data constraints
name | type | data type | description |
---|---|---|---|
category | required | string | The category of the event. Used for filtering in dashboards. |
Success Response
Code : 200 OK
Request examples
POST /usage --data '{"category": "string", "additionalProp1": {}}'
Content examples
For a successful response with data:
{
'status': 'OK',
}
Error Responses
POST usage without category
Code : 400 BAD_REQUEST
Notes
- Your
api_key
can be found in the API keys page of your application dashboard on https://app.trckrspace.com (opens in a new tab). - You can add any additional keys which are supported by JSON data types in the post body object.