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=TRvypRNBeqM597Zi4DcqJ2Vh" \ -H "Finix-Version: 2022-02-01" \ -u USsRhsHYZGBPnQw8CByJyEQW:8a14c2f9-d94b-4c72-8f5c-a62908e5b30e
{- "_embedded": {
- "fees": [
- {
- "id": "FEcMVtzekuwTqTB94oLAeofh",
- "created_at": "2022-01-27T07:38:09.41Z",
- "updated_at": "2022-01-27T07:38:09.41Z",
- "amount": 30,
- "category": null,
- "currency": "USD",
- "display_name": null,
- "fee_subtype": "PLATFORM_FEE",
- "fee_type": "CARD_FIXED",
- "label": null,
- "linked_id": "TRvypRNBeqM597Zi4DcqJ2Vh",
- "linked_type": "TRANSFER",
- "merchant": "MUeDVrf2ahuKc9Eg5TeZugvs",
- "tags": { },
- "_links": {
}
}, - {
- "id": "FEcDUf5ghkMtgtwHxrFjjnbc",
- "created_at": "2024-09-25T16:36:52.22Z",
- "updated_at": "2024-09-25T16:36:52.22Z",
- "amount": 100,
- "category": "PROCESSOR",
- "currency": "USD",
- "display_name": "April_Performance_Analytics_Fees",
- "fee_subtype": "CUSTOM",
- "fee_type": "CUSTOM",
- "label": null,
- "linked_id": null,
- "linked_type": null,
- "merchant": "MU9vi89wuxyMwqQH1efU988d",
- "tags": {
- "test": "tag"
}, - "_links": {
}
}
]
}, - "_links": {
}, - "page": {
- "limit": 100,
- "next_cursor": "FEnQthVWgiDF94UyLaEHP6mc"
}
}
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": "FEcDUf5ghkMtgtwHxrFjjnbc",
- "created_at": "2024-09-25T16:36:52.22Z",
- "updated_at": "2024-09-25T16:36:52.22Z",
- "amount": 100,
- "category": "PROCESSOR",
- "currency": "USD",
- "display_name": "April_Performance_Analytics_Fees",
- "fee_subtype": "CUSTOM",
- "fee_type": "CUSTOM",
- "label": null,
- "linked_id": null,
- "linked_type": null,
- "merchant": "MU9vi89wuxyMwqQH1efU988d",
- "tags": {
- "test": "tag"
}, - "_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/FEcMVtzekuwTqTB94oLAeofh" \ -H "Finix-Version: 2022-02-01" \ -u USsRhsHYZGBPnQw8CByJyEQW:8a14c2f9-d94b-4c72-8f5c-a62908e5b30e
{- "id": "FEcDUf5ghkMtgtwHxrFjjnbc",
- "created_at": "2024-09-25T16:36:52.22Z",
- "updated_at": "2024-09-25T16:36:52.22Z",
- "amount": 100,
- "category": "PROCESSOR",
- "currency": "USD",
- "display_name": "April_Performance_Analytics_Fees",
- "fee_subtype": "CUSTOM",
- "fee_type": "CUSTOM",
- "label": null,
- "linked_id": null,
- "linked_type": null,
- "merchant": "MU9vi89wuxyMwqQH1efU988d",
- "tags": {
- "test": "tag"
}, - "_links": {
}
}