API Runner
billing Endpoints
All endpoints for the billing API group. Great for feeding into an LLM context.
POST
/v1/billing/sync-twilio-usage
Sync Twilio Usage Route
Triggers the daily or multi-day range Twilio usage sync for the entire system. Requires superuser permissions.
Request Body
{
"content": {
"application/json": {
"schema": {
"anyOf": [
{
"$ref": "#/components/schemas/SyncTwilioUsageRequest"
},
{
"type": "null"
}
],
"title": "Request"
}
}
}
}Responses
200Successful Response
application/json
{}422Validation Error
application/json
{
"$ref": "#/components/schemas/HTTPValidationError"
}POST
/v1/billing/hooks
Hooks Route
Responses
200Successful Response
application/json
{}404Not found
API Runner