Request parameters for listTransportationOptions operation in FulfillmentInboundApi.

FulfillmentInboundApiListTransportationOptionsRequest

interface FulfillmentInboundApiListTransportationOptionsRequest {
    inboundPlanId: string;
    pageSize?: number;
    paginationToken?: string;
    placementOptionId?: string;
    shipmentId?: string;
}

Properties

inboundPlanId: string

Identifier of an inbound plan.

FulfillmentInboundApiListTransportationOptions

pageSize?: number

The number of transportation options to return in the response matching the given query.

FulfillmentInboundApiListTransportationOptions

paginationToken?: string

A token to fetch a certain page when there are multiple pages worth of results. The value of this token is fetched from the `pagination` returned in the API response. In the absence of the token value from the query parameter the API returns the first page of the result.

FulfillmentInboundApiListTransportationOptions

placementOptionId?: string

The placement option to get transportation options for. Either `placementOptionId` or `shipmentId` must be specified.

FulfillmentInboundApiListTransportationOptions

shipmentId?: string

The shipment to get transportation options for. Either `placementOptionId` or `shipmentId` must be specified.

FulfillmentInboundApiListTransportationOptions