GET v1/shipping-methods

Gets all the available shipping methods.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ShippingMethods
NameDescriptionTypeAdditional information
ShippingMethodId

integer

None.

ShippingMethod

string

None.

TrackingURL

string

None.

Active

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "shippingMethodId": 1,
    "shippingMethod": "sample string 2",
    "trackingURL": "sample string 3",
    "active": true
  },
  {
    "shippingMethodId": 1,
    "shippingMethod": "sample string 2",
    "trackingURL": "sample string 3",
    "active": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfShippingMethods xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BAPI.Models.Accounting">
  <ShippingMethods>
    <Active>true</Active>
    <ShippingMethod>sample string 2</ShippingMethod>
    <ShippingMethodId>1</ShippingMethodId>
    <TrackingURL>sample string 3</TrackingURL>
  </ShippingMethods>
  <ShippingMethods>
    <Active>true</Active>
    <ShippingMethod>sample string 2</ShippingMethod>
    <ShippingMethodId>1</ShippingMethodId>
    <TrackingURL>sample string 3</TrackingURL>
  </ShippingMethods>
</ArrayOfShippingMethods>