I am attempting to create a mass payment in my sandbox account but keep getting the error BadRequest The request body contains bad syntax or is incomplete
. I am following examples from the API doc and from this post. I’ve also simplified it to what seems to be the bare minimum with no success. Request is included below, would appreciate any help on this.
{
"_links": {
"source": {
"href": "https://api-sandbox.dwolla.com/funding-sources/19365d52-6e07-48d0-9d9e-08616a9e3473"
}
},
"items": [
{
"_links": {
"destination": {
"href": "https://api-sandbox.dwolla.com/funding_sources/185a0626-58b6-4e74-96ab-cc435d388bc2"
}
},
"amount": {
"currency": "USD",
"value": "1.23"
}
},
{
"_links": {
"destination": {
"href": "https://api-sandbox.dwolla.com/funding_sources/310efdac-3dd2-43ef-9356-560b6677423f"
}
},
"amount": {
"currency": "USD",
"value": "0.99"
}
}
]
}