POST
/
link
/
token
/
create
curl --request POST \
  --url http://localhost:8080/plaid-compatible/link/token/create \
  --header 'Content-Type: application/json' \
  --header 'PLAID-CLIENT-ID: <api-key>' \
  --data '{
  "client_id": "<string>",
  "secret": "<string>",
  "client_name": "<string>",
  "language": "<string>",
  "country_codes": [
    "GB"
  ],
  "user": {
    "client_user_id": "<string>",
    "phone_number": "<string>",
    "phone_number_verified_time": "2023-11-07T05:31:56Z",
    "email_address": "<string>",
    "email_address_verified_time": "2023-11-07T05:31:56Z"
  },
  "products": [
    "transactions"
  ],
  "additional_consented_products": [
    "transactions"
  ],
  "webhook": "<string>",
  "access_token": "<string>",
  "redirect_uri": "<string>"
}'
{
  "link_token": "<string>",
  "expiration": "2023-11-07T05:31:56Z",
  "request_id": "<string>"
}

Authorizations

PLAID-CLIENT-ID
string
header
required

Headers

Plaid-Version
string | null

Body

application/json

LinkTokenCreateRequest defines the request schema for /link/token/create

Response

200
application/json

OK

LinkTokenCreateResponse defines the response schema for /link/token/create