PaymentMethods
Calculate card payment fees
Calculate payment fees for a specific card payment method
post/customers/{id}/payment-methods/{card_id}/fees
Path parameters
idstring required
Customer ID
card_idstring required
Card ID
Request body
Example request
{
"amount": "100.00",
"currency": "USD"
}Response
OK
Example response
{
"fee_percentage_for_customer": "2.50",
"fee_percentage_for_partner": "1.50",
"fixed_fee_amount_customer": "0.50",
"fixed_fee_amount_partner": "0.25",
"relative_fee_amount_customer": "2.50",
"relative_fee_amount_partner": "1.50"
}