Webhooks
Products
Inventory
Orders
- POSTCancel one Shipment by Shipment Id
- GETGet one Shipment's status timeline by Shipment Id
- GETGet Orders
- POSTCreate Order
- GETGet one Shipment by Order Id and Shipment Id
- GETGet logs for one Shipment by Shipment Id
- GETGet all Shipments for Order
- GETGet one Shipment's status timeline by Order Id and Shipment Id
- GETGet one Shipment by Shipment Id
- PUTUpdate a Shipment
- GETGet logs for one Shipment by Order Id and Shipment Id
- POSTCancel multiple Shipments by Shipment Id
- POSTEstimate Fulfillment Cost For Order
- GETGet shipping methods
- POSTCancel single Order by Order ID
- GETGet Order Store Json
- POSTSave the Store Order Json
- GETGet Order
- POSTCancel one Shipment by Order Id and Shipment Id
Locations
Receiving
- GETGet Fulfillment Centers
- GETGet Warehouse Receiving Order Box Labels (DEPRECATED)
- POSTCancel Warehouse Receiving Order (DEPRECATED)
- GETGet a Warehouse Receiving Order by Purchase Order Number (DEPRECATED)
- POSTCreate Warehouse Receiving Order (DEPRECATED)
- GETGet Warehouse Receiving Order (DEPRECATED)
Returns
Channels
Locations
Get locations
Locations
Get locations
GET
/
location
curl --request GET \
--url https://api.shipbob.com/1.0/location \
--header 'Authorization: Bearer <token>'
[
{
"abbreviation": "string",
"access_granted": true,
"attributes": [
"string"
],
"id": 0,
"is_active": true,
"is_receiving_enabled": true,
"is_shipping_enabled": true,
"name": "string",
"region": {
"id": 0,
"name": "string"
},
"services": [
{
"address": {
"address1": "string",
"address2": "string",
"city": "string",
"country": "string",
"email": "string",
"name": "string",
"phone_number": "string",
"state": "string",
"zip_code": "string"
},
"enabled": true,
"service_type": "Receiving"
}
],
"timezone": "string"
}
]
Authorizations
Authentication using Personal Access Token (PAT) token
Query Parameters
Whether the inactive locations should be included or not
Return all the receiving enabled locations
Return all the access granted locations
Response
200
application/json
Success
Was this page helpful?
curl --request GET \
--url https://api.shipbob.com/1.0/location \
--header 'Authorization: Bearer <token>'
[
{
"abbreviation": "string",
"access_granted": true,
"attributes": [
"string"
],
"id": 0,
"is_active": true,
"is_receiving_enabled": true,
"is_shipping_enabled": true,
"name": "string",
"region": {
"id": 0,
"name": "string"
},
"services": [
{
"address": {
"address1": "string",
"address2": "string",
"city": "string",
"country": "string",
"email": "string",
"name": "string",
"phone_number": "string",
"state": "string",
"zip_code": "string"
},
"enabled": true,
"service_type": "Receiving"
}
],
"timezone": "string"
}
]