ShipmentInvoiceApi - axios parameter creator

  • Parameters

    • Optionalconfiguration: Configuration

    Returns {
        getInvoiceStatus: (
            shipmentId: string,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        getShipmentDetails: (
            shipmentId: string,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        submitInvoice: (
            shipmentId: string,
            body: SubmitInvoiceRequest,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
    }

    • getInvoiceStatus: (shipmentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>

      Returns the invoice status for the shipment you specify. Usage Plan: | Rate (requests per second) | Burst | | ---- | ---- | | 1.133 | 25 | 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.

    • getShipmentDetails: (shipmentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>

      Returns the shipment details required to issue an invoice for the specified shipment. Usage Plan: | Rate (requests per second) | Burst | | ---- | ---- | | 1.133 | 25 | 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.

    • submitInvoice: (
          shipmentId: string,
          body: SubmitInvoiceRequest,
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>

      Submits a shipment invoice document for a given shipment. Usage Plan: | Rate (requests per second) | Burst | | ---- | ---- | | 1.133 | 25 | 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.