GET
/
fulfillmentCenter
curl --request GET \
  --url https://api.shipbob.com/1.0/fulfillmentCenter \
  --header 'Authorization: <api-key>'
[
  {
    "address1": "5900 W Ogden Ave",
    "address2": "Suite 100",
    "city": "Cicero",
    "country": "USA",
    "email": "[email protected]",
    "id": 0,
    "name": "Cicero (IL)",
    "phone_number": "555-555-5555",
    "state": "IL",
    "timezone": "Central Standard Time",
    "zip_code": "60804"
  }
]

Authorizations

Authorization
string
header
required

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

Response

200
application/json
Success
address1
string | null

Address line one of the fulfillment center

Example:

"5900 W Ogden Ave"

address2
string | null

Address line two of the fulfillment center

Example:

"Suite 100"

city
string | null

City the fulfillment center is located in

Example:

"Cicero"

country
string | null

Country the fulfillment center is located in

Example:

"USA"

email
string | null

Email contact for the fulfillment center

id
integer

Unique identifier of the fulfillment center

name
string | null

Name of the fulfillment center

Example:

"Cicero (IL)"

phone_number
string | null

Phone number contact for the fulfillment center

Example:

"555-555-5555"

state
string | null

State the fulfillment center is located in

Example:

"IL"

timezone
string | null

Timezone the fulfillment center is located in

Example:

"Central Standard Time"

zip_code
string | null

Postal code of the fulfillment center

Example:

"60804"