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

    Request parameters for getInvoiceHeaders operation in FinancesInvoicesApi.

    interface FinancesInvoicesApiGetInvoiceHeadersRequest {
        fromIssueDate?: string;
        invoicesModifiedAfter?: string;
        marketplaceId: string;
        nextToken?: string;
        toIssueDate?: string;
    }
    Index
    fromIssueDate?: string

    Retrieve invoice headers issued after this date. The range between `fromIssueDate` and `toIssueDate` must not exceed 90 days. Either provide both dates or leave both empty. If you do not provide these dates, `fromIssueDate` defaults to 90 days before the date of the request. In ISO 8601 date-time format.

    invoicesModifiedAfter?: string

    Retrieve invoices that were modified after this date-time. In ISO 8601 date-time format.

    marketplaceId: string

    The marketplace ID of the marketplace from which you want to retrieve invoice headers. The marketplace ID is a globally unique identifier used to specify which Amazon marketplace a request is targeting. For more information, refer to Marketplace IDs.

    nextToken?: string

    The response includes `nextToken` when the number of invoices exceeds the default page size value (100). 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.

    toIssueDate?: string

    Retrieve invoice headers issued before this date. The range between `fromIssueDate` and `toIssueDate` must not exceed 90 days. Either provide both dates or leave both empty. If you do not provide these dates, `toIssueDate` defaults to the date of the request. In ISO 8601 date-time format.