Curious if there’s any current issues in Dwolla sandbox. Requests to create verified business customers are failing, but not other requests, such as initiating a transfer.
Here is an error ID: 58464d66-445c-450f-b879-fa5236fab90f
Let me know if there’s other details I need to provide, I can provide the request body if needed. Thanks
@dtj that should be caught in our API validation check but it appears that field is getting overlooked. We’ll look into this and get that fixed as it should be returning either:
{
"code": "ValidationError",
"message": "Validation error(s) present. See embedded errors list for more details.",
"_embedded": {
"errors": [
{
"code": "Invalid",
"message": "BusinessType invalid.",
"path": "/businessType",
"_links": {}
}
]
}
}
or
{
"code": "ValidationError",
"message": "Validation error(s) present. See embedded errors list for more details.",
"_embedded": {
"errors": [
{
"code": "Required",
"message": "BusinessType required.",
"path": "/businessType",
"_links": {}
}
]
}
}
Would you be able to DM me what you were sending across to the API so we have that logged when we investigate this further?
Hi @ragini , this looks like an uncaught exception on our part. It appears you are passing in null as a value to a required field. null is not an acceptable value to be passed into required fields.