Requested Resource not found funding ID

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"
        }
    },

Hi @remaster , feel free to post the ID of the funding source and/or the full request url and I can take a closer look at our logs. Unfortunately this is a bit difficult to debug on my end without a full picture of the API request details.