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": "fdcec2cc-f21e-4e1f-b738-6be852e3313b",
  "object": "shipping_provider",
  "approved": true,
  "enabled": true,
  "live_mode": false,
  "provider_type": "shippo",
  "created_at": 1778010931,
  "updated_at": 1778010931
}

Documentation Index

Fetch the complete documentation index at: https://developer.surecart.com/llms.txt

Use this file to discover all available pages before exploring further.

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.