Skip to main content
GET
/
v1
/
shipping_protocol
Retrieve
curl --request GET \
  --url https://{defaultHost}/v1/shipping_protocol \
  --header 'Authorization: Bearer <token>'
{
  "id": "0e448eb7-5415-45e8-8fc6-9d588fbe621e",
  "object": "shipping_protocol",
  "shipping_enabled": false,
  "created_at": 1771429909,
  "updated_at": 1771429909
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

shipping_enabled
boolean

If set to true a shipping choice will be required for checkouts that have shipping_enabled products.

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.