Using the payments API we can see the labels 'consumer', 'Mastercard', and country 'Netherlands' when we retrieve specific transactions. But looking at various transactions, both Maestro tx's and Mastercard Debit tx's have these same labels, but they are charged a different fee. We need either the exact method or the total fee info per transaction to pass the right fee on to our customers.
The Payments API doesn't seem to include the amount that was deducted, so we also cannot reverse figure out based on the method pricing which card was used.
We so far only found that the internal API of the Mollie dashboard is able to retrieve the fees amount and the Balances API with "List balance transactions" can tell us. But since it's only a very minor part of our total transactions looping through the whole balance transactions list to solve this feels overkill.
Are we missing something? Is there any other way to determine which type of card was using from the Payments API data? Or retrieve the fee-info per transaction using the Payments API? Or filter the balances API on payment method?