Get ACH Deposit Limit
sFOX has partnered up with Dwolla, a US payments processing platform, to integrate ACH Transfer capabilities.
GET
https://api.sfox.com/v1/account/weekly-deposit-limit
Retrieve a user's remaining weekly ACH deposit allowance.
Response Body
The user's remaining weekly ACH deposit allowance. Remaining allowance = limit - ACH deposits.
Responses
200 OK
{
"data": {
"weekly_deposit_limit": 5000
}
}
Example Requests
curl -H 'Authoriaztion: Bearer <USER_AUTH_TOKEN>' \
-H 'Content-Type: application/json' \
-X GET \
'https://api.sfox.com/v1/account/weekly-deposit-limit'
const axios = require ('axios');
axios({
method: 'get',
url: 'https://api.sfox.com/v1/account/weekly-deposit-limit',
headers: {
'Authorization': 'Bearer <USER_AUTH_TOKEN>'
}
}).then(response => {
console.log(response)
}).catch(err => {
console.error(err)
});
import requests
data = requests.get(
"https://api.sfox.com/v1/account/weekly-deposit-limit',
headers={
"Authorization": "Bearer <USER_AUTH_TOKEN>",
}
)
print(data)
Last updated