Get Plaid Processors
Request
Path Parameters
Name
Type
Description
Example Requests
curl --location 'https://api.sfox.com/v1/bank-accounts/${BANK_ACCOUNT_ID}/plaid-processors' \
--header 'Authorization: Bearer ${USER_AUTH_TOKEN}'const axios = require('axios');
let config = {
method: 'get',
url: 'https://api.sfox.com/v1/bank-accounts/${BANK_ACCOUNT_ID}/plaid-processors',
headers: {
'Authorization': 'Bearer ${USER_AUTH_TOKEN}'
}
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
import requests
url = "https://api.sfox.com/v1/bank-accounts/${BANK_ACCOUNT_ID}/plaid-processors"
payload = {}
headers = {
'Authorization': 'Bearer ${USER_AUTH_TOKEN}'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)Response
Response Body
Name
Type
Description
Responses
Last updated