GET /v1/invoices
List all invoices for the authenticated user. Query parameters:| Parameter | Type | Description |
|---|---|---|
page | integer | Page number (default: 1) |
status | string | Filter by status: pending, paid, cancelled |
GET /v1/invoices/
Get details of a specific invoice. Path parameter:invoice — invoice UUID
Response (200):
GET /v1/invoices//payment-url
Get the payment URL for a pending invoice. Path parameter:invoice — invoice UUID
Response (200):
422 if the invoice is already paid or cancelled.