Request parameters for getCustomerInvoices operation in VendorShippingApi.

VendorShippingApiGetCustomerInvoicesRequest

interface VendorShippingApiGetCustomerInvoicesRequest {
    createdAfter: string;
    createdBefore: string;
    limit?: number;
    nextToken?: string;
    shipFromPartyId?: string;
    sortOrder?: GetCustomerInvoicesSortOrderEnum;
}

Properties

createdAfter: string

Orders that became available after this date and time will be included in the result. Must be in ISO-8601 date/time format.

VendorShippingApiGetCustomerInvoices

createdBefore: string

Orders that became available before this date and time will be included in the result. Must be in ISO-8601 date/time format.

VendorShippingApiGetCustomerInvoices

limit?: number

The limit to the number of records returned

VendorShippingApiGetCustomerInvoices

nextToken?: string

Used for pagination when there are more orders than the specified result size limit. The token value is returned in the previous API call.

VendorShippingApiGetCustomerInvoices

shipFromPartyId?: string

The vendor warehouseId for order fulfillment. If not specified, the result will contain orders for all warehouses.

VendorShippingApiGetCustomerInvoices

Sort ASC or DESC by order creation date.

VendorShippingApiGetCustomerInvoices