Skip to main content
POST
/
v0
/
open-banking
/
link-token
Create Plaid Link Token
curl --request POST \
  --url https://api.sumvin.com/v0/open-banking/link-token \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "redirect_uri": "<string>",
  "products": [
    "transactions"
  ],
  "country_codes": [
    "GB"
  ]
}
'
{
  "_links": {},
  "link_token": "<string>",
  "expiration": "<string>",
  "request_id": "<string>"
}

Authorizations

Authorization
string
header
required

JWT token from Authorization header (Bearer token)

Headers

x-juno-orgid
string | null

Tenant org ID for multi-tenant auth

x-juno-jwt
string | null

JWT token from x-juno-jwt header

Body

application/json
redirect_uri
string | null

Custom redirect URI for OAuth callback

products
string[]

Plaid products to enable (transactions, auth, identity, etc.)

country_codes
string[]

Country codes for supported institutions

Response

Link token created successfully

HAL-style hypermedia links for navigation and available actions.

expiration
string
required
request_id
string
required