Skip to main content

Documentation Portal

ShippingOptions

Returns all available shipping options for the cart information specified either by cartToken or by including all the relevant checkoutCartInfo details.

Method/URL

https://{server_name}/Browsing/ShippingOptions

Parameters

Request

Parameter Name

Type

Description

Mandatory

cartToken

String

Merchants who implement API checkout only, may specify the Cart token returned by the SendCart method preceding the current method call. In this case, all other arguments will be ignored and the information stored in the respective Cart will be used instead

Either cartToken or checkoutCartInfo must be specified.

checkoutCartInfo

Object CheckoutCartInfo

Full cart information.

Either cartToken or checkoutCartInfo must be specified.

Response

Parameter Name

Type

Description

Mandatory

CheckoutShippingOption

List of CheckoutShippingOption

List of shipping options

Example

Request for CheckoutCartInfo

[
  {
        "ProductCode": "1020872",
        "Name": "Lanolin",
        "Description": "Breast%20Feeding%20Ointment",
        "GenericHSCode": "",
        "OriginCountryCode": "",
        "Weight": "1.0000",
        "Height": null,
        "Length": null,
        "Volume": "60",
        "ImageURL": "\/a\/3\/a3c9ef_ece3bec0467310603bce72e9a58e33d3.jpg",
        "ImageHeight": "",
        "ImageWidth": "",
        "ListPrice": "25.0000",
        "OriginalListPrice": "17.7000",
        "SalePrice": "15.0000",
        "OriginalSalePrice": "17.7000",
        "VATRateType": {
            "VATRateTypeCode": 1,
            "Name": "Low",
            "Rate": "18.0000"
        },
        "Brand": {
            "BrandCode": "7",
            "Name": "Brand2"
        },
        "Categories": [{
                "CategoryCode": "3",
                "Name": "Maternity"
            }
        ],
        "OrderedQuantity": 1
    }
]