Get ACH Agreement Status

GET

https://api.sfox.com/v1/account/accepted-ach

Retrieve the status of a user's acceptance of Dwolla's (1) Terms & Conditions (2) Privacy Policy.

sFOX has partnered with Dwolla, a leading US payments processing platform, to enable ACH transfers. To access ACH transfers, a user must accept Dwolla's (1) Terms & Conditions (2) Privacy Policy.


Request

Authentication: This endpoint requires a User Auth Token for authentication. Requests using your Connect API Key will be rejected.

Example Requests

curl -H 'Authorization: Bearer <USER_AUTH_TOKEN>'\
-H 'Content-Type: application/json' \
-X GET \
'https://api.sfox.com/v1/account/accepted-ach'

Response

Responses

200: OK
//User has accepted
{
    "data": {
        "dwolla": true 
    }
}

//User has NOT accepted
{
    "data": {
        "dwolla": true 
    }
}

Last updated