POST
/
fdx_auth_requests
/
authorize
Grant an FDX authorization request
curl --request POST \
  --url https://api.synctera.com/v1/fdx_auth_requests/authorize \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "auth_request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "business_id": "<string>",
  "customer_id": "<string>",
  "status": "DENIED"
}'
{
  "redirect_uri": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

FDX authorization grant

auth_request_id
string<uuid>
required

The ID of the FDX authorization request.

status
enum<string>
required

Whether the end customer was authenticated by the Fintech and authorized Plaid access to their data, or whether there was an error in the authentication.

Available options:
DENIED,
ERROR,
GRANTED
business_id
string

The UUID of the business associated with the FDX token. One of customer_id or business_id must be provided.

customer_id
string

The UUID of the customer associated with the FDX token. One of customer_id or business_id must be provided.

Response

FDX authorization grant response

redirect_uri
string
required

URI to redirect to after successful authorization.