Skip to main content
GET
/
v1
/
fees
/
{id}
Retrieve
curl --request GET \
  --url https://{defaultHost}/v1/fees/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3ccba78f-7a7b-48e5-846f-c79e1aea5233",
  "object": "fee",
  "amount": 100,
  "description": "Transaction Fee",
  "fee_type": "manual",
  "line_item": "23728723-a3f7-4fc2-ab3a-e24f7f6aa0ea",
  "created_at": 1770234856,
  "updated_at": 1770234856
}

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 fee.

fee_type
string

The type of fee – one of auto, bump, manual, setup, upsell.

line_item

Expandable – The associated line item 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.