Get ACH Deposit Limit
GET
https://api.sfox.com/v1/account/weekly-deposit-limit
Retrieve a user's remaining weekly ACH deposit allowance.
Request
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)Response
Response Body
Name
Type
Description
weekly_deposit_limit
number
The user's remaining weekly ACH deposit allowance. Remaining allowance = limit - ACH deposits.
Responses
Last updated