auth_request_id
query parameter. Its purpose is to verify the customer’s identity, using a login page, one time password or whatever other method is appropriate for your service.
Upon successful authentication, the endpoint makes a POST request to the Synctera platform at /v1/fdx_auth_requests/authorize
to grant authorization to this auth_request_id
, using the following schema:
GRANTED
, DENIED
or ERROR
redirect_uri
property. Your authentication endpoint must then return a 302 Found
response with this URI to the initial authentication request. This will redirect the customer’s app (browser or mobile) so it can continue the account linking flow with Plaid.
/v1/fdx_auth_requests/authorize
with a status of DENIED
. Similarly, if you encounter any errors, use a status of ERROR
. These will both provide you a redirect_uri
for you to redirect the customer to the Plaid failure page, terminating the auth flow.
In some error scenarios, the /v1/fdx_auth_requests/authorize
response will not include a redirect_uri
. In such cases, your authentication endpoint should return a generic error message page instead of the redirect response.
f.com/authorize
as their endopoint.
In this flow, Customer
represents the customer using the initiating Financial Institution’s app (browser or mobile).