Skip to main content
GET
/
fee-charges
/
{fee_charge_id}
Retrieve a fee charge
curl --request GET \
  --url https://api.example.com/fee-charges/{fee_charge_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "tax_rate": "<string>",
  "fee": {
    "id": "<string>",
    "name": "<string>",
    "display_name": "<string>",
    "alias": "<string>",
    "description": "<string>",
    "tax_rate": "<string>",
    "fee_type": "transaction",
    "transaction_type": "<string>",
    "chargeable_currencies": {},
    "created_at": "2023-11-07T05:31:56Z",
    "modified_at": "2023-11-07T05:31:56Z"
  },
  "amount_fee": "<string>",
  "amount_tax": "<string>",
  "amount_total": "<string>",
  "refunded_amount": "<string>",
  "refundable_amount": "<string>",
  "is_fully_refunded": true,
  "is_partially_refunded": true,
  "currency": "EUR",
  "period_start": "2023-12-25",
  "period_end": "2023-12-25",
  "collected_at": "2023-11-07T05:31:56Z",
  "related_transaction": "<string>",
  "related_transaction_amount": "<string>",
  "refunds": [
    {
      "id": "<string>",
      "amount": "<string>",
      "currency": "EUR",
      "fee_charge": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "modified_at": "2023-11-07T05:31:56Z"
    }
  ],
  "created_at": "2023-11-07T05:31:56Z",
  "modified_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

fee_charge_id
string
required

Response

OK

id
string
required

Unique resource identifier.

tax_rate
string | null
required
fee
Fee · object
required
amount_fee
string
required
amount_tax
string
required
amount_total
string
required
refunded_amount
string
required
refundable_amount
string
required
is_fully_refunded
boolean
required
is_partially_refunded
boolean
required
currency
enum<string>
required
Available options:
EUR,
USD,
GBP
period_start
string<date> | null
required
period_end
string<date> | null
required
collected_at
string<date-time> | null
required
refunds
Refund · object[]
required
created_at
string<date-time>
required

The timestamp (in ISO-8601 format) of when the resource was created.

modified_at
string<date-time>
required

The timestamp (in ISO-8601 format) of when the resource was last modified.