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

    Module @sp-api-sdk/fulfillment-outbound-api-2026-07-04 - v1.1.0

    @sp-api-sdk/fulfillment-outbound-api-2026-07-04

    npm version XO code style

    The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon's fulfillment network. You can get information on both potential and existing fulfillment orders.

    Bizon

    Learn more about this Selling Partner API by visiting the official documentation.

    Also, see the generated documentation for this API client.

    npm install @sp-api-sdk/fulfillment-outbound-api-2026-07-04
    
    import {SellingPartnerApiAuth} from '@sp-api-sdk/auth'
    import {FulfillmentOutboundApiClient} from '@sp-api-sdk/fulfillment-outbound-api-2026-07-04'

    // `clientId` and `clientSecret` default to the `LWA_CLIENT_ID` and
    // `LWA_CLIENT_SECRET` environment variables.
    const auth = new SellingPartnerApiAuth({
    refreshToken: await getRefreshTokenForSeller(sellerId),
    })

    const client = new FulfillmentOutboundApiClient({
    auth,
    region: 'eu',
    })

    In order to retry rate limited requests (HTTP 429), you can configure the API client as such:

    const client = new FulfillmentOutboundApiClient({
    auth,
    region: 'eu',
    rateLimiting: {
    retry: true,
    // Optionally specify a callback that will be called on every retry.
    onRetry: (retryInfo) => {
    console.log(retryInfo)
    },
    },
    })

    The rate limits used for each route are specified in the API documentation.

    You can enable logging for both SP-API requests and responses by configuring the logging.request and logging.response properties.

    const client = new FulfillmentOutboundApiClient({
    auth,
    region: 'eu',
    logging: {
    request: {
    logger: console.debug,
    },
    response: {
    logger: console.debug,
    },
    error: true,
    },
    })

    Specifying true will use the default options, specifying an object will allow you to override the default options.
    This uses axios-logger under the hood.
    By default, if enabled, the request and response loggers will use console.info and the error logger will use console.error.

    MIT

        ╚⊙ ⊙╝
      ╚═(███)═╝
     ╚═(███)═╝
    ╚═(███)═╝
     ╚═(███)═╝
      ╚═(███)═╝
       ╚═(███)═╝
    
    FulfillmentOutboundApi
    FulfillmentOutboundApiClient
    Address
    AmazonFacility
    AmazonTracking
    Amount
    CarrierTracking
    Constraint
    ConstraintDetail
    CreateOrderAcceptedResponse
    CreateOrderLineItem
    CreateOrderRequest
    CreateOrderResponse
    ErrorList
    EstimatedPrice
    FulfillmentOrder
    FulfillmentOutboundApiCancelOrderRequest
    FulfillmentOutboundApiCreateOrderRequest
    FulfillmentOutboundApiGetOffersRequest
    FulfillmentOutboundApiGetOrderPreviewRequest
    FulfillmentOutboundApiGetOrderRequest
    FulfillmentOutboundApiListOrdersRequest
    FulfillmentOutboundApiUpdateOrderRequest
    FulfillmentOutboundApiUpdateOrderStatusRequest
    FulfillmentOutboundApiUpdatePackageRequest
    GetOffersRequest
    GetOffersResponse
    GetOrderPreviewRequest
    GetOrderPreviewResponse
    GetOrderResponse
    LineItemFulfillmentConfiguration
    ListOrdersResponse
    ModelError
    Money
    OfferDestination
    OfferFulfillmentConfiguration
    OfferItem
    OfferOption
    OfferOptionFulfillmentConfiguration
    OfferResult
    OfferServiceLevel
    OrderDestination
    OrderDropOffLocation
    OrderFulfillmentConfiguration
    OrderLineItem
    OrderLineItemDeliveryService
    OrderLineItemPackagingService
    OrderLineItemPaymentOnDelivery
    OrderLineItemServices
    OrderOrigin
    OrderPackingSlip
    OrderProduct
    OrderResponseFulfillmentConfiguration
    OrderServices
    Package
    PackagingService
    Pagination
    Payment
    PaymentInformation
    PreviewDeliveryOffer
    PreviewDeliveryService
    PreviewDestination
    PreviewFulfillmentConfiguration
    PreviewLineItem
    PreviewOfferFulfillmentConfiguration
    PreviewOfferServiceLevel
    PreviewOfferServices
    PreviewPackagingService
    PreviewPlannedShipment
    PreviewPlannedShipmentItem
    PreviewProduct
    PreviewServiceLevel
    PreviewServices
    ProductIdentifier
    ProofOfDelivery
    RollupPrice
    ServiceLevel
    Shipment
    ShipmentItem
    ShipmentServiceLevel
    TimeInterval
    Tracking
    UpdateOrderFulfillmentConfiguration
    UpdateOrderRequest
    UpdateOrderStatusRequest
    UpdatePackageRequest
    VariablePrecisionAddress
    Weight
    GetOrderShipmentsEnum
    ListOrdersShipmentsEnum
    clientRateLimits
    GetOrderShipmentsEnum
    ListOrdersShipmentsEnum
    FulfillmentOutboundApiAxiosParamCreator
    FulfillmentOutboundApiFactory
    FulfillmentOutboundApiFp