cURL
curl --request POST \ --url https://api.brale.xyz/accounts/{account_id}/plaid/link_token \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "legal_name": "John Doe", "email_address": "user@example.com", "phone_number": "+1234567890", "date_of_birth": "1990-01-01" } '
{ "link_token": "link-sandbox-123456789", "expiration": "2024-01-01T12:00:00Z", "callback_url": "https://customer.com/webhooks/plaid-updates" }
Generate a Plaid Link token that launches the Plaid UI for connecting a bank account.
Use the Bearer token returned from the Auth endpoint via OAuth2 client_credentials flow. Include the token in the "Authorization: Bearer " header.
User's legal name
"John Doe"
User's email address
"user@example.com"
User's phone number
"+1234567890"
User's date of birth
"1990-01-01"
OK
Plaid Link token
"link-sandbox-123456789"
ISO 8601 expiration
"2024-01-01T12:00:00Z"
URL to POST the public token to after Plaid Link
"https://customer.com/webhooks/plaid-updates"
Was this page helpful?
Contact support