How should we submit a facilitator fee with a Mass Payment? I couldn’t find this referenced in the API documentation, and submitting it like so doesn’t seem to work (or I’m looking in the wrong place in the dashboard to see the fee?)
fees = [{
"_links": {
"charge-to": {
"href": "https://api-sandbox.dwolla.com/customers/" + str(dwolla_customer_id)
}
},
"amount": {
"value": str(sam_transaction_fee),
"currency": "USD"
}
}]
request_body = {
'_links': {
'source': {'href': source_bank},
},
'items' : mass_payment_array,
'correlationId' : correlationId,
'fees' : fees
}
transfer = app_token.post('mass-payments', request_body)