When trying to setup micro deposits i am trying to hit this url
https://api.dwolla.com/funding-sources/{id}/micro-deposits
I have set the Accept and Content-Type headers to “application/vnd.dwolla.v1.hal+json”
i have the bearer token properly set as well.
but i keep getting
{
"code": "NotFound",
"message": "The requested resource was not found."
}
Headers are :
This is on production. Trying to setup micro deposit for this user.
When doing a get request on the funding source. The _links that return are:
"_links": {
"transfer-from-balance": {
"href": "https://api.dwolla.com/transfers",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "transfer"
},
"self": {
"href": "https://api.dwolla.com/funding-sources/{id}",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "funding-source"
},
"remove": {
"href": "https://api.dwolla.com/funding-sources/{id}",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "funding-source"
},
"initiate-micro-deposits": {
"href": "https://api.dwolla.com/funding-sources/{id}/micro-deposits",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "micro-deposits"
},
"customer": {
"href": "https://api.dwolla.com/customers/{cid}",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "customer"
},
"transfer-receive": {
"href": "https://api.dwolla.com/transfers",
"type": "application/vnd.dwolla.v1.hal+json",
"resource-type": "transfer"
}
},
