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

Authorizations

Authorization
string
header
required

Authentication using Personal Access Token (PAT) 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

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