Hello,
I am currently building a plaid + dwolla integration following this guide here. After setting everything up and successfully being able to see a customer being added on my dashboard. I am having issues adding the funding-source to be Plaid. Instead of a success, I am getting the following error:
{
"code": "ValidationError",
"message": "Validation error(s) present. See embedded errors list for more details.",
"_embedded": {
"errors": [
{
"code": "Invalid",
"message": "Routing number is invalid.",
"path": "/routingNumber",
"_links": {}
}
]
}
}
For simplicity, this is my post request url and body from Postman where I noticed the same issue:
url: https://api-sandbox.dwolla.com/customers/<customer_id>/funding-sources
{
"plaidToken": "processor-sandbox-<rest of the token>",
"name": "Jane Doe - Checking"
}
If I were to add a routingNumber and accountNumber with some dummy data, the request succeeds, however this seems incorrect.