cURL
curl --request GET \ --url https://api.antei.com/invoices/{id} \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "invoice_number": "<string>", "status": "draft", "contact_id": "<string>", "transaction_ids": [ "<string>" ], "currency": "<string>", "amount": 123, "issue_date": "2023-12-25", "due_date": "2023-12-25", "metadata": {} }
Retrieve a specific invoice by its ID.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Invoice details
The response is of type object.
object