Skip to main content
POST
/
v0
/
user
/
me
/
bank
/
link-token
Create Link Token
curl --request POST \
  --url https://api.example.com/v0/user/me/bank/link-token \
  --header 'Content-Type: application/json' \
  --data '
{
  "redirect_uri": "<string>",
  "products": [
    "<string>"
  ]
}
'
{
  "_links": {
    "kyc": {
      "description": "Submit KYC information",
      "href": "/v0/user/me/kyc",
      "method": "PUT"
    },
    "self": {
      "href": "/v0/user/me",
      "method": "GET"
    },
    "wallets": {
      "href": "/v0/wallets",
      "method": "GET"
    }
  }
}

Headers

x-sumvin-token
string | null
x-juno-jwt
string | null

Body

application/json
redirect_uri
string | null

Custom redirect URI for OAuth callback

products
string[] | null

Override default Plaid products

Response

Link token created

HAL-style hypermedia links for navigation and available actions.

expiration
integer
required