REST API DOCS
Client APIFees and Payments

Invoices. Get Invoice

GET
/backend/api/v1/fees/invoices/

Returns invoices for the authenticated user. Filter by invoice ID if needed.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Query Parameters

invoice_id?integer

Optional invoice ID to retrieve a specific invoice

Response Body

application/json

curl -X GET "https://example.com/backend/api/v1/fees/invoices/"
{  "message": "success",  "data": [    {      "id": 6,      "type": "Subscription",      "total_value": "99.0000000000000000",      "date": "June, 2026",      "invoice_id": 17820864023533,      "status": "payment-due",      "services": [        {          "value": "99.0000000000000000",          "accrual_value": "99.0000000000000000",          "key": "tier_2",          "name": "Portal Access",          "period_type": "month",          "customer_type": "subscription",          "customer_type_name": "Subscription",          "number": "Month",          "date": "June, 22, 2026"        }      ],      "payments": [],      "approved_date_time": null,      "updated_at": "2026-06-22T00:00:02.565861Z"    },    {      "id": 5,      "type": "Billing",      "total_value": "18.0000000000000000",      "date": "2023-11-30",      "invoice_id": 16987654321000,      "status": "payment-due",      "services": [        {          "value": "6.0000000000000000",          "accrual_value": "6.0000000000000000",          "key": "last_sale",          "name": "Last Sale",          "period_type": "month",          "customer_type": "billing",          "customer_type_name": "Billing",          "number": "Month",          "date": "November, 30, 2023"        }      ],      "payments": [],      "approved_date_time": null,      "updated_at": "2023-11-30T00:00:00.000000Z"    }  ],  "code": 200}