---
title: "Get Reseller Invoice"
method: GET
path: "/v1/reseller/invoices/{id}"
tags: ["Reseller"]
---

# Get Reseller Invoice

`GET /v1/reseller/invoices/{id}`

Shows a specific Reseller Invoice associated with the current
reseller.

Note: To see the details of this invoice, you will probably
want to also fetch the associated Account Usage Line Items and
Organization Usage Line Items.

## Path parameters

- `id` integer, required

## Response `200`

Get Reseller Invoice

- object
  - `invoice` Invoice — Invoice model
    - `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.

## Other responses

- `403` — There was an issue with your API credential or permissions.
- `404` — Invoice not found

---

[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)
