Retrieve a single invoice by ID.
cURL
curl --request GET \ --url https://api.monk.com/v1/invoices/{invoiceId} \ --header 'Authorization: Bearer <token>'
{ "data": { "id": "<string>", "invoiceNumber": "<string>", "customerId": "<string>", "contractId": "<string>", "status": "Drafted", "invoiceDate": "2023-12-25", "dueDate": "2023-12-25", "totalCents": 123, "memo": "<string>", "paymentLink": "<string>", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "lineItems": [ { "id": "<string>", "name": "<string>", "description": "<string>", "quantity": 123, "unitPriceCents": 123, "totalAmountCents": 123, "unitPrice": "<string>", "totalAmount": "<string>", "priceId": "<string>", "isMetered": true, "servicePeriod": { "start": "2023-11-07T05:31:56Z", "end": "2023-11-07T05:31:56Z" } } ] } }
invoices:read
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Comma-separated list of related resources to include. Supported values: lineItems
lineItems
Invoice found
Show child attributes