Skip to main content
POST
/
v1
/
platform
/
payment-methods
/
plaid
/
link-token
Generate Plaid Link Token
curl --request POST \
  --url https://api.sandbox.finogates.com/v1/platform/payment-methods/plaid/link-token \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "redirect_uri": "https://app.example.com/plaid/callback"
}
'
{
  "status_code": 123,
  "data": "<unknown>",
  "query_generated_time": 123
}

Documentation Index

Fetch the complete documentation index at: https://developer.finogates.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json

Request to generate a Plaid Link token for an end user.

user_id
string<uuid>
required

UUID of the end user for whom the Plaid Link session is being initiated. The user must belong to the authenticated platform.

Example:

"b3a9b622-cc63-4d3c-aad6-2d8e29e6f9d4"

redirect_uri
string | null

OAuth redirect URI for Plaid Link. Required for OAuth-based institutions. Must be registered in the Plaid dashboard.

Maximum string length: 2048
Example:

"https://app.example.com/plaid/callback"

Response

Successful Response

Standard response wrapper for single-object responses and errors.

status_code
integer
required

HTTP status code for the response.

data
any
required

Payload or error details.

query_generated_time
integer
required

UTC timestamp (milliseconds since epoch) when response was generated.