Get Plaid Processors

GET

https://api.sfox.com/v1/bank-accounts/${BANK_ACCOUNT_ID}/plaid-processors

Retrieve a list of Plaid processors associated with an end user's bank account.


Request

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

Path Parameters

Name
Type
Description

BANK_ACCOUNT_ID required

string

The ID of the end user's bank account (id from Get Bank Account).

Example Requests

curl --location 'https://api.sfox.com/v1/bank-accounts/${BANK_ACCOUNT_ID}/plaid-processors' \
--header 'Authorization: Bearer ${USER_AUTH_TOKEN}'

Response

Response Body

Name
Type
Description

data

[object]

The Plaid processor_tokens and associated processors

processor

string

The processor associated with the token that was processed. Possible values: sfox, dwolla

status

string

The status of processing the token.

bank_account_id

string

The ID of the associated bank account. (id from Get Bank Account)

date_added

string

Date-time the token was added.

date_updated

string

Date-time the token was last updated.

Responses

200: OK
401: Unauthorized

Invalid user auth token

Last updated