Skip to main content
GET
/
v1
/
auto_fees
/
{id}
Retrieve
curl --request GET \
  --url https://{defaultHost}/v1/auto_fees/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "f669815d-119f-43a8-89bf-43aee101fa71",
  "object": "auto_fee",
  "enabled": true,
  "amount_adjustment": null,
  "currency": "usd",
  "discount": false,
  "end_at": null,
  "expired": false,
  "fee_target": "line_item",
  "metadata": {},
  "name": "Auto Fee 2",
  "ongoing": true,
  "percent_adjustment": 5,
  "rules": null,
  "start_at": 1767909671,
  "created_at": 1767909671,
  "updated_at": 1767909671
}

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.

enabled
boolean

Whether the auto fee is enabled.

amount_adjustment
integer | null

The amount in cents to be added or subtracted from subtotal of applicable checkout

discount
boolean

Whether this auto fee is a discount (subtracted from total) or a fee (added to total).

end_at
integer | null

Time at which the auto fee becomes inactive. Measured in seconds since the Unix epoch.

fee_target
enum<string>

The entity to which this auto fee applies. (This can only be set when the auto fee is created.)

Available options:
checkout,
line_item,
shipping
metadata
object

Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.

name
string

The name of the auto fee.

percent_adjustment
number<float> | null

The percentage to be added or subtracted from subtotal of applicable checkout.

rules
object

The rules that determine when this auto fee applies

start_at
integer

Time at which the auto fee becomes active. Measured in seconds since the Unix epoch.

currency
string

Three-letter ISO currency code, in lowercase.

expired
boolean

Whether the auto fee has expired.

ongoing
boolean

Whether the auto fee is currently active.

discarded_at
integer | null

Time at which the object was discarded. Measured in seconds since the Unix epoch.

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.