GET
/
invoices
{invoice_id}
curl --request GET \
  --url https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws/invoices{invoice_id} \
  --header 'Authorization: Bearer <token>'
{
  "billing_address": "<any>",
  "created_at": "<string>",
  "currency": "<string>",
  "due_date": "<string>",
  "id": "<string>",
  "invoice_number": "<string>",
  "line_items": [
    {
      "description": "<string>",
      "quantity": 123,
      "total": 123,
      "unit_price": 123
    }
  ],
  "organization_id": "<string>",
  "organization_name": "<string>",
  "payment_terms": "<string>",
  "status": "<string>",
  "subtotal": 123,
  "tax": 123,
  "total": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

invoice_id
string
required

Unique identifier of the invoice to retrieve

Response

200
application/json

Successfully retrieved invoice details

Complete invoice details including line items and payment information

Contains all information needed to understand and process an invoice, including itemized charges, taxes, and payment terms.