A Fee
is a charge levied against a Merchant
. It represents how a platform charges its sellers for all various types of Fees. Payment transactions generate Fee
resources.
Retrieve a list of Fee
resources. As a query parameter, pass the ID of the TRANSFER
or AUTHORIZATION
that generated the Fee
.
Finix-Version | string Default: 2018-01-01 Specify the API version of your request. For more details, see Versioning. Example: 2022-02-01 |
List of Fee objects
Authentication information is missing or invalid
Forbidden
Not Acceptable
curl "https://finix.sandbox-payments-api.com/fees?linked_id=TRfnif8f9U1r6k2zys27U4yP" \ -H "Finix-Version: 2022-02-01" \ -u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda
{- "_embedded": {
- "fees": [
- {
- "id": "FEvjF5iPwy6zuUEsBWgJ9T79",
- "created_at": "2024-12-16T08:33:42.12Z",
- "updated_at": "2024-12-16T08:33:42.12Z",
- "amount": 151,
- "category": "PROCESSOR",
- "currency": "USD",
- "display_name": null,
- "fee_subtype": "PLATFORM_FEE",
- "fee_type": "CARD_BASIS_POINTS",
- "label": null,
- "linked_id": "TRfnif8f9U1r6k2zys27U4yP",
- "linked_to": "TRfnif8f9U1r6k2zys27U4yP",
- "linked_type": "TRANSFER",
- "merchant": "MUmfEGv5bMpSJ9k5TFRUjkmm",
- "tags": { },
- "_links": {
}
}, - {
- "id": "FEnCRGg2nSUXY96wd99Hy31R",
- "created_at": "2024-12-16T08:33:42.12Z",
- "updated_at": "2024-12-16T08:33:42.12Z",
- "amount": 30,
- "category": "PROCESSOR",
- "currency": "USD",
- "display_name": null,
- "fee_subtype": "PLATFORM_FEE",
- "fee_type": "CARD_FIXED",
- "label": null,
- "linked_id": "TRfnif8f9U1r6k2zys27U4yP",
- "linked_to": "TRfnif8f9U1r6k2zys27U4yP",
- "linked_type": "TRANSFER",
- "merchant": "MUmfEGv5bMpSJ9k5TFRUjkmm",
- "tags": { },
- "_links": {
}
}
]
}, - "_links": {
}, - "page": {
- "limit": 100,
- "next_cursor": "FEnCRGg2nSUXY96wd99Hy31R"
}
}
Create a custom (i.e. one-time) Fee
.
Finix-Version | string Default: 2018-01-01 Specify the API version of your request. For more details, see Versioning. Example: 2022-02-01 |
Single Fee object
Authentication information is missing or invalid
Forbidden
Object does not exist
Not Acceptable
{- "id": "FEvjF5iPwy6zuUEsBWgJ9T79",
- "created_at": "2024-12-16T08:33:42.12Z",
- "updated_at": "2024-12-16T08:33:42.12Z",
- "amount": 151,
- "category": "PROCESSOR",
- "currency": "USD",
- "display_name": null,
- "fee_subtype": "PLATFORM_FEE",
- "fee_type": "CARD_BASIS_POINTS",
- "label": null,
- "linked_id": "TRfnif8f9U1r6k2zys27U4yP",
- "linked_to": "TRfnif8f9U1r6k2zys27U4yP",
- "linked_type": "TRANSFER",
- "merchant": "MUmfEGv5bMpSJ9k5TFRUjkmm",
- "tags": { },
- "_links": {
}
}
Retrieve the details of a Fee
.
Finix-Version | string Default: 2018-01-01 Specify the API version of your request. For more details, see Versioning. Example: 2022-02-01 |
Single Fee object
Authentication information is missing or invalid
Forbidden
Object does not exist
Not Acceptable
curl "https://finix.sandbox-payments-api.com/fees/FEvjF5iPwy6zuUEsBWgJ9T79" \ -H "Finix-Version: 2022-02-01" \ -u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda
{- "id": "FEvjF5iPwy6zuUEsBWgJ9T79",
- "created_at": "2024-12-16T08:33:42.12Z",
- "updated_at": "2024-12-16T08:33:42.12Z",
- "amount": 151,
- "category": "PROCESSOR",
- "currency": "USD",
- "display_name": null,
- "fee_subtype": "PLATFORM_FEE",
- "fee_type": "CARD_BASIS_POINTS",
- "label": null,
- "linked_id": "TRfnif8f9U1r6k2zys27U4yP",
- "linked_to": "TRfnif8f9U1r6k2zys27U4yP",
- "linked_type": "TRANSFER",
- "merchant": "MUmfEGv5bMpSJ9k5TFRUjkmm",
- "tags": { },
- "_links": {
}
}