After creating a transfer with facilitator fee, If I call fees API I get zero.
Request payload for create transfer API
{
"_links":{
"source":{
"href":"https://api-sandbox.dwolla.com/funding-sources/f84cb944-e060-484f-a517-67bca28d88e6"
},
"destination":{
"href":"https://api-sandbox.dwolla.com/funding-sources/6f0a81c3-1efe-4d0b-bf01-0638fb0fd2b6"
}
},
"correlationId":"33ac84070aa145099e46260654a31cb3",
"amount":{
"currency":"USD",
"value":11.79
},
"fees":[
{
"_links":{
"charge-to":{
"href":{
"href":"https://api-sandbox.dwolla.com/customers/07461cfd-5c99-48d2-9a79-161542cc685a"
}
}
},
"amount":{
"value":0.18,
"currency":"USD"
}
}
]
}
If I call list fees for a transfer API I get 0.
Fee API response
{
"_links": {
"self": {
"href": "https://api-sandbox.dwolla.com/transfers/c0b6917f-8146-eb11-812b-eb1777c8247b/fees",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "fee"
}
},
"_embedded": {
"fees": []
},
"transactions": [],
"total": 0
}