List billing periods
GET/v2/studio/transactions/periods
Your billing cycles, newest first.
Request
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
items
object[]
startDate date-time
endDate date-timenullable
End of the cycle, or null for a deeply lapsed user.
tier string
Subscription tier for this cycle.
cadence string
Billing cadence (monthly or yearly).
allocatedAmount number
Credits allocated for this cycle.
isCurrent boolean
True for the current cycle.
{
"items": [
{
"startDate": "2024-07-29T15:51:28.071Z",
"endDate": "2024-07-29T15:51:28.071Z",
"tier": "string",
"cadence": "string",
"allocatedAmount": 0,
"isCurrent": true
}
]
}
Loading...