Skip to main content
GET
/
user
/
invoices
List invoices
curl --request GET \
  --url https://api.managem.co.uk/user/invoices \
  --header 'Authorization: Bearer <token>'
{
  "invoices": [
    {
      "id": "<string>",
      "number": "<string>",
      "amountDue": 123,
      "createdAt": "<string>"
    }
  ],
  "hasMore": true,
  "nextStartingAfter": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer
default:10

Maximum number of invoices to return.

Required range: 1 <= x <= 100
startingAfter
string

Stripe invoice ID to start after. Use the value from nextStartingAfter of the previous response.

Response

200 - application/json

Paginated Stripe invoices for the authenticated user.

invoices
object[]
required

Collection of Stripe invoices for the authenticated customer.

hasMore
boolean
required

Indicates whether more invoices are available beyond the current page.

nextStartingAfter
string | null
required

Identifier to pass as startingAfter in the next request when hasMore is true.