Skip to main content
GET
/
v1
/
shipping_providers
/
{id}
Retrieve
curl --request GET \
  --url https://{defaultHost}/v1/shipping_providers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "0a6c9632-3395-4eee-ada8-98744b251bc7",
  "object": "shipping_provider",
  "approved": true,
  "enabled": true,
  "live_mode": false,
  "provider_type": "shippo",
  "created_at": 1775219021,
  "updated_at": 1775219021
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

approved
boolean

Whether or not this shipping provider has been verified and approved.

enabled
boolean

Whether or not this shipping provider is enabled.

live_mode
boolean

Whether or not this shipping provider is in live mode.

provider_type
string

The type of shipping provider – currently only shippo.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.