VendorShippingApi - functional programming interface

  • Parameters

    • Optionalconfiguration: Configuration

    Returns {
        getShipmentDetails(
            limit?: number,
            sortOrder?: GetShipmentDetailsSortOrderEnum,
            nextToken?: string,
            createdAfter?: string,
            createdBefore?: string,
            shipmentConfirmedBefore?: string,
            shipmentConfirmedAfter?: string,
            packageLabelCreatedBefore?: string,
            packageLabelCreatedAfter?: string,
            shippedBefore?: string,
            shippedAfter?: string,
            estimatedDeliveryBefore?: string,
            estimatedDeliveryAfter?: string,
            shipmentDeliveryBefore?: string,
            shipmentDeliveryAfter?: string,
            requestedPickUpBefore?: string,
            requestedPickUpAfter?: string,
            scheduledPickUpBefore?: string,
            scheduledPickUpAfter?: string,
            currentShipmentStatus?: string,
            vendorShipmentIdentifier?: string,
            buyerReferenceNumber?: string,
            buyerWarehouseCode?: string,
            sellerWarehouseCode?: string,
            options?: RawAxiosRequestConfig,
        ): Promise<
            (
                axios?: AxiosInstance,
                basePath?: string,
            ) => AxiosPromise<GetShipmentDetailsResponse>,
        >;
        getShipmentLabels(
            limit?: number,
            sortOrder?: GetShipmentLabelsSortOrderEnum,
            nextToken?: string,
            labelCreatedAfter?: string,
            labelCreatedBefore?: string,
            buyerReferenceNumber?: string,
            vendorShipmentIdentifier?: string,
            sellerWarehouseCode?: string,
            options?: RawAxiosRequestConfig,
        ): Promise<
            (
                axios?: AxiosInstance,
                basePath?: string,
            ) => AxiosPromise<GetShipmentLabels>,
        >;
        submitShipmentConfirmations(
            body: SubmitShipmentConfirmationsRequest,
            options?: RawAxiosRequestConfig,
        ): Promise<
            (
                axios?: AxiosInstance,
                basePath?: string,
            ) => AxiosPromise<SubmitShipmentConfirmationsResponse>,
        >;
        submitShipments(
            body: SubmitShipments,
            options?: RawAxiosRequestConfig,
        ): Promise<
            (
                axios?: AxiosInstance,
                basePath?: string,
            ) => AxiosPromise<SubmitShipmentConfirmationsResponse>,
        >;
    }

    • getShipmentDetails:function
      • Returns the Details about Shipment, Carrier Details, status of the shipment, container details and other details related to shipment based on the filter parameters value that you specify. 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

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

    • getShipmentLabels:function
      • Returns small parcel shipment labels based on the filters that you specify. Usage Plan: | Rate (requests per second) | Burst | | ---- | ---- | | 10 | 10 | The x-amzn-RateLimit-Limit response header contains the usage plan rate limits for the operation, when available. The preceding table contains the default rate and burst values for this operation. Selling partners whose business demands require higher throughput might have higher rate and burst values than those shown here. For more information, refer to Usage Plans and Rate Limits.

        Parameters

        • Optionallimit: number

          The limit to the number of records returned. Default value is 50 records.

        • OptionalsortOrder: GetShipmentLabelsSortOrderEnum

          Sort the list by shipment label creation date in ascending or descending order.

        • OptionalnextToken: string

          A token that is used to retrieve the next page of results. The response includes `nextToken` when the number of results exceeds the specified `pageSize` value. 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.

        • OptionallabelCreatedAfter: string

          Shipment labels created after this time will be included in the result. This field must be in ISO 8601 datetime format.

        • OptionallabelCreatedBefore: string

          Shipment labels created before this time will be included in the result. This field must be in ISO 8601 datetime format.

        • OptionalbuyerReferenceNumber: string

          Get Shipment labels by passing buyer reference number.

        • OptionalvendorShipmentIdentifier: string

          Get Shipment labels by passing vendor shipment identifier.

        • OptionalsellerWarehouseCode: string

          Get Shipping labels based on vendor warehouse code. This value must be same as the `sellingParty.partyId` in the shipment.

        • Optionaloptions: RawAxiosRequestConfig

          Override http request option.

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

    • submitShipmentConfirmations:function
      • Submits one or more shipment confirmations for vendor orders. 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

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

    • submitShipments:function
      • Submits one or more shipment request for vendor Orders. 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

        • body: SubmitShipments

          A request to submit shipment request.

        • Optionaloptions: RawAxiosRequestConfig

          Override http request option.

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