Skip to main content
POST
/
v1
/
shipping_fees
Create
curl --request POST \
  --url https://{defaultHost}/v1/shipping_fees \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "shipping_fee": {
    "amount": 10,
    "description": "Setup fee",
    "checkout": "982beb8b-8987-43c7-b5df-2c481e8ba077"
  }
}
'
{
  "id": "5fa13c53-4ab1-4a61-a741-1aa9aa550208",
  "object": "shipping_fee",
  "amount": 10,
  "description": "Setup fee",
  "fee_type": "manual",
  "checkout": "982beb8b-8987-43c7-b5df-2c481e8ba077",
  "created_at": 1770234898,
  "updated_at": 1770234898
}

Authorizations

Authorization
string
header
required

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

Body

application/json
shipping_fee
object

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.