Skip to main content
GET
/
v1
/
shipping_fees
/
{id}
Retrieve
curl --request GET \
  --url https://{defaultHost}/v1/shipping_fees/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "d83dbb4e-1380-40e5-87b8-6f0644aed890",
  "object": "shipping_fee",
  "amount": 0,
  "description": "SweetDeal317733",
  "fee_type": "manual",
  "checkout": "87619f41-95de-4dde-b83d-43288e4be1dd",
  "created_at": 1776176581,
  "updated_at": 1776176581
}

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.

amount
integer

The amount in cents to be added or subtracted, represented as an integer. For example 9900 is equivalent to $99.

description
string

A short description of the shipping fee.

fee_type
string

The type of shipping_fee – one of auto or manual.

checkout

Expandable – The associated checkout ID.

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.