Amend Plaid Processors
Request
Path Parameters
Name
Type
Description
Body Parameters
Name
Type
Description
Example Requests
#Update bank account with new sFOX and Dwolla processor tokens
curl --location --request PUT 'https://api.sfox.com/v1/bank-accounts/${BANK_ACCOUNT_ID}/plaid-processors' \
-H 'Content-type: application/json' \
-H "Authorization: Bearer ${USER_AUTH_TOKEN}" \
-d '{
"data": [
{
"processor": "sfox",
"token": "${SFOX_PLAID_PROCESSOR_TOKEN}"
},
{
"processor": "dwolla",
"token": "${DWOLLA_PLAID_PROCESSOR_TOKEN}"
}
]
}'
#Update bank account with new sFOX processor token
curl --location --request PUT 'https://api.sfox.com/v1/bank-accounts/${BANK_ACCOUNT_ID}/plaid-processors' \
-H 'Content-type: application/json' \
-H "Authorization: Bearer ${USER_AUTH_TOKEN}" \
-d '{
"data": [{
"processor": "sfox",
"token": "${SFOX_PLAID_PROCESSOR_TOKEN}"
}]
}'Response
Response Body
Name
Type
Description
Responses
Last updated