GET
/
shippingmethod
curl --request GET \
  --url https://api.shipbob.com/1.0/shippingmethod \
  --header 'Authorization: <api-key>'
[
  {
    "active": true,
    "default": true,
    "id": 0,
    "name": "string",
    "service_level": {
      "id": 0,
      "name": "string"
    }
  }
]

Authorizations

Authorization
string
header
required

Provide your personal access token in the format 'Bearer {your_personal_access_token}'

Query Parameters

Page
number

Page of orders to get

Required range: 0 <= x <= 2147483647
Limit
number

Amount of records per page to request

Required range: 1 <= x <= 250

Response

200
application/json
Success
active
boolean

Indicates if the shipping method is active

default
boolean

Indicates the shipping method is a ShipBob default shipping method.

id
integer

Unique id for shipping method.

name
string | null

Name of the ship method as selected by the merchant and saved in ShipBob’s database (i.e. “ground”). Corresponds to the shipping_method field in the Orders API.

service_level
object