---
title: "GET /app/invoices/{invoice_number}/"
method: GET
path: "/app/invoices/{invoice_number}/"
tags: ["app"]
---

# GET /app/invoices/{invoice_number}/

`GET /app/invoices/{invoice_number}/`

A simple ViewSet for viewing and editing Invoices.

## Path parameters

- `invoice_number` string, required

## Response `200`

- Invoice
  - `invoice_number` string, required
  - `cost_due` number, double, required
  - `currency` PricingUnit, required
    - `code` string, required
    - `name` string, required
    - `symbol` string, required
  - `issue_date` string, date-time, required
  - `payment_status` 'paid' | 'unpaid', required
  - `external_payment_obj_id` string, nullable, required
  - `external_payment_obj_type` 'stripe' | 'null', nullable, required
  - `line_items` InvoiceLineItem[], required
    - `name` string, required
    - `start_date` string, date-time, required
    - `end_date` string, date-time, required
    - `quantity` number, double, nullable, required
    - `subtotal` number, double, required
    - `billing_type` 'in_arrears' | 'in_advance' | 'null', nullable, required
    - `metadata` object, nullable, required
    - `plan` LightweightPlanVersion, required
      - `plan_name` string, required
      - `plan_id` string, required
      - `version` integer, required
    - `subscription_filters` SubscriptionCategoricalFilter[], required
      - `value` string, required
      - `property_name` string, required — The string name of the property to filter on. Example: 'product_id'
  - `customer` LightweightCustomerSerializerForInvoice, required
    - `customer_name` string, nullable, required — The display name of the customer
    - `email` string, email, nullable, required — The primary email address of the customer, must be the same as the email address used to create the customer in the payment provider
    - `customer_id` string, required — The id provided when creating the customer, we suggest matching with your internal customer id in your backend
    - `address` Address
      - `city` string, required — City, district, suburb, town, or village
      - `country` string, required — ISO 3166-1 alpha-2 country code
      - `line1` string, required — Address line 1 (e.g., street, PO Box, or company name)
      - `line2` string, nullable — Address line 2 (e.g., apartment, suite, unit, or building)
      - `postal_code` string, required — ZIP or postal code
      - `state` string, required — State, county, province, or region
  - `due_date` string, date-time, nullable, required
  - `start_date` string, date, required
  - `end_date` string, date, required
  - `seller` Seller, required
    - `name` string, required
    - `address` Address
      - `city` string, required — City, district, suburb, town, or village
      - `country` string, required — ISO 3166-1 alpha-2 country code
      - `line1` string, required — Address line 1 (e.g., street, PO Box, or company name)
      - `line2` string, nullable — Address line 2 (e.g., apartment, suite, unit, or building)
      - `postal_code` string, required — ZIP or postal code
      - `state` string, required — State, county, province, or region
    - `phone` string, nullable
    - `email` string, email, nullable
  - `invoice_pdf` string, uri, nullable, required

## Changes

- **2023-01-16** `36b48cae00a3` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/uselotus/apis/lotus-api/changes/app/invoices/:invoice_number/get.md)

---

[API](https://skmtc.dev/uselotus/apis/lotus-api.md) · [All operations](https://skmtc.dev/uselotus/apis/lotus-api/llms.txt) · [OpenAPI document](https://skmtc.dev/uselotus/apis/lotus-api/revisions/0507a54ad455?raw)
