UpdateInventoryApi - functional programming interface

  • Parameters

    • Optionalconfiguration: Configuration

    Returns {
        submitInventoryUpdate(
            warehouseId: string,
            body: SubmitInventoryUpdateRequest,
            options?: RawAxiosRequestConfig,
        ): Promise<
            (
                axios?: AxiosInstance,
                basePath?: string,
            ) => AxiosPromise<SubmitInventoryUpdateResponse>,
        >;
    }

    • submitInventoryUpdate:function
      • Submits inventory updates for the specified warehouse for either a partial or full feed of inventory items. Usage Plan: | Rate (requests per second) | Burst | | ---- | ---- | | 10 | 10 | The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see Usage Plans and Rate Limits in the Selling Partner API.

        Parameters

        • warehouseId: string

          Identifier for the warehouse for which to update inventory.

        • body: SubmitInventoryUpdateRequest

          The request body containing the inventory update data to submit.

        • Optionaloptions: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<
            (
                axios?: AxiosInstance,
                basePath?: string,
            ) => AxiosPromise<SubmitInventoryUpdateResponse>,
        >