GET
/
invoices
curl --request GET \
  --url https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws/invoices \
  --header 'Authorization: Bearer <token>'
{
  "invoices": [
    {
      "amount": 123,
      "created_at": "<string>",
      "currency": "<string>",
      "due_date": "<string>",
      "id": "<string>",
      "invoice_number": "<string>",
      "organization_id": "<string>",
      "status": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer

Maximum number of items to return (default: 50)

offset
integer

Number of items to skip (default: 0)

leq(created_at)
string

Filter by created_at <= value

geq(created_at)
string

Filter by created_at >= value

lss(created_at)
string

Filter by created_at < value

gtr(created_at)
string

Filter by created_at > value

equ(created_at)
string

Filter by created_at = value

Response

200
application/json

Successfully retrieved invoice list

List of invoices for the authenticated organization

Returns all invoices associated with your organization, sorted by creation date (newest first).