Amazon Selling Partner API (SP-API) SDK for TypeScript
    Preparing search index...

    The response to the getInvoiceHeaders operation.

    interface GetInvoicesResponse {
        invoices?: InvoiceHeader[];
        nextToken?: string;
        numOfRecords?: number;
    }
    Index
    invoices?: InvoiceHeader[]

    A list of invoices with header-level details.

    nextToken?: string

    The response includes nextToken when the number of invoices exceeds the default page size value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until nextToken is null. Note that this operation can return empty pages.

    numOfRecords?: number

    The number of records returned.