Pliant Platform Fees
Introduction
Depending on the setup of the organization, Pliant collects monthly/yearly fees from the customer. This can be for example:
- a monthly subscription fee,
- a foreign exchange (FX) fee,
- a fee for usage of a Black Card product,
- etc.
Those fees are collected directly from the account of the customer. They appear there as a transaction from Pliant itself and attached you will find the invoice for the collected fees.
Example
All transactions for platform fees are made with dedicated credit cards marked with
{
"cardId": "c65e6071-dc43-4236-a406-ad2d9df20228",
"cardConfig": "PLIANT_PLATFORM_FEE",
"status": "ACTIVE",
"label": "Pliant Platform Fee",
"platformFee": true,
...
}
which can be seen in the card details endpoint. Those cards belong to the owner of the organization.
A transaction on such a card might look like this:

{
"transactionId": "4e1399f5-3916-48a5-aac6-a66e3c7f5d02",
"cardId": "c65e6071-dc43-4236-a406-ad2d9df20228",
"type": "PURCHASE",
"category": "COMPUTING_AND_SOFTWARE",
"transactionAmount": {
"value": -617,
"currency": "EUR"
},
"receiptIds": [
"06ff1e9f-37b0-47e8-9886-19a428e7c588"
],
"merchantData": {
"pliantMerchantId": "ee50f5ea-2be0-411a-bcd3-2852513649b2",
"displayName": "PLIANT",
...
},
"merchantRawData": {
"merchantLegalName": "Pliant GmbH",
...
},
...
}
This transaction might for instance appear monthly and collects all necessary fees due for this organization.
The linked receipt for this transaction looks similar to the one below and can be obtained via the receiptId
on the transaction.

Updated 19 days ago