---
title: "List Account Invoices"
method: GET
path: "/v1/accounts/{account_id}/invoices"
tags: ["Reseller"]
---

# List Account Invoices

`GET /v1/accounts/{account_id}/invoices`

Shows Invoices associated with your account.

**Note:** This endpoint will also return a `pagination` key on the root level.  
Please refer to the [pagination section](https://api.huntress.io/docs#pagination) within our docs for more information.

## Path parameters

- `account_id` integer, required

## Query parameters

- `limit` integer
- `page_token` string
- `sort_field` 'id' | 'created_at' | 'updated_at' | 'status'
- `sort_direction` 'asc' | 'desc'
- `status` 'open' | 'paid' | 'failed' | 'partial_refund' | 'full_refund' | 'draft' | 'voided' | 'processing'
- `has_usage` boolean

## Response `200`

List Account Invoices

- object
  - `invoices` Invoice[], required
    - `id` integer — A unique identifier for the invoice.
    - `amount` integer — The amount intended to be collected by this invoice. <a href='https://stripe.com/docs/api/charges/object#charge_object-amount'>Mimics Stripe.</a>.
    - `created_at` string, date-time — ISO-8601 formatted timestamp for when this invoice was created.
    - `currency_type` string — The currency type, using a <a href='https://en.wikipedia.org/wiki/ISO_4217'>ISO-4217</a> three-letter code in lowercase.
    - `plan` string — The corresponding name of huntress subscription plan sku.
    - `quantity` integer — The total count of licensed agents accounted for in this invoice.
    - `receipt` string — A direct link to stripe payment invoice for this invoice.
    - `status` string — The invoice status. Can be one of `open`, `paid`, `failed`, `partial_refund`, `full_refund`.
    - `has_usage` boolean — Whether this invoice has associated usage line items.
    - `updated_at` string, date-time — ISO-8601 formatted timestamp for when this invoice was last updated.
  - `pagination` Pagination, required — Pagination model
    - `next_page_url` string
    - `next_page_token` string

## Other responses

- `403` — There was an issue with your API credential or permissions.

---

[API](https://skmtc.net/huntress/apis/huntress-api-reference.md) · [All operations](https://skmtc.net/huntress/apis/huntress-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/huntress/huntress-api-reference/revisions/94acb422c07d/schema)
