UsageEvents
Get UsageEvent
UsageEvents
Get UsageEvent
GET
/
api
/
v1
/
usage-events
/
{id}
curl --request GET \
--url https://app.flowglad.com/api/v1/usage-events/{id} \
--header 'Authorization: <api-key>'
{
"usageEvent": {
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"customerId": "<string>",
"subscriptionId": "<string>",
"usageMeterId": "<string>",
"amount": 1,
"usageDate": "2023-11-07T05:31:56Z",
"transactionId": "<string>"
}
}
Authorizations
Path Parameters
Response
200
application/json
Successful response
Required range:
x > 0
The date the usage occurred. Currently should always the current date. If the usage occurs in a date that is outside of the current billing period, the usage will still be attached to the current billing peirod.
A unique identifier for the transaction. This is used to prevent duplicate usage events from being created.
curl --request GET \
--url https://app.flowglad.com/api/v1/usage-events/{id} \
--header 'Authorization: <api-key>'
{
"usageEvent": {
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"customerId": "<string>",
"subscriptionId": "<string>",
"usageMeterId": "<string>",
"amount": 1,
"usageDate": "2023-11-07T05:31:56Z",
"transactionId": "<string>"
}
}