I’m getting an error testing a transfer with an amount of 11072.98 but not with smaller amounts on our sandbox account. Here is the content of the transfer request
{
"amount": {
"currency": "USD",
"value": "11072.98"
},
"_links": {
"source": {
"href": "https://api-sandbox.dwolla.com/funding-sources/3c0acd66-1f48-4ae1-9796-325af41a368f"},
"destination": {
"href": "mailto:testeng.logigear@gmail.com"
}
},
"metadata": {
"notes": "",
"user_id": "1002063",
"email": "testeng.logigear+techtp@gmail.com"
}
}
and here is the error we are getting
{
"code": "ValidationError",
"message": "Validation error(s) present. See embedded errors list for more details.",
"_embedded": {
"errors":[
{
"code": "Invalid",
"message": "Invalid amount.",
"path": "/amount/value",
"_links": {}
}
]
}
}
Are there limits on the transferable amounts?