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": "FEnQthVWgiDF94UyLaEHP6mc",
- "created_at": "2022-01-27T07:38:08.90Z",
- "updated_at": "2022-01-27T07:38:08.90Z",
- "amount": 19202,
- "category": null,
- "currency": "USD",
- "display_name": null,
- "fee_subtype": "PLATFORM_FEE",
- "fee_type": "CARD_BASIS_POINTS",
- "label": null,
- "linked_id": "TRvypRNBeqM597Zi4DcqJ2Vh",
- "linked_type": "TRANSFER",
- "merchant": "MUeDVrf2ahuKc9Eg5TeZugvs",
- "tags": { },
- "_links": {
}
}
]
}, - "_links": {
}, - "page": {
- "limit": 100,
- "next_cursor": "FEnQthVWgiDF94UyLaEHP6mc"
}
}
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": "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": {
}
}