GET
/v1/billing/{familyId}
curl \
--request GET 'https://classmanager.test/v1/billing/fml_123123123123?billingMonth=2023-07-24&seasonId=sea_123123123123&pricingPlanId=pp_123123123123'
Response examples (200)
{
"familyId": "fml_xxxxxxxxxxxxxxxxxxxxxxxxxx",
"description": "This is a bill description",
"date": "2023-12-05",
"subtotal": 1000,
"discountTotal": -100,
"taxTotal": 200,
"total": 1200,
"items": [
{
"description": "This is a bill item description",
"type": "manual-debit",
"subtotal": 1000,
"discountTotal": 100,
"taxTotal": 200,
"taxDescription": "string",
"total": 1200,
"discounts": [
{
"description": "VAT (20%)",
"total": 200,
"amount": 320,
"taxAmount": 120
}
]
}
],
"taxes": [
{
"description": "VAT (20%)",
"amount": 200
}
]
}
Response examples (403)
{
"statusCode": 42.0,
"messages": [
"string"
],
"exception": {}
}
Response examples (404)
{
"statusCode": 42.0,
"messages": [
"string"
],
"exception": {}
}