Plaid Compatibility Layer
/link/token/create
POST
/
link
/
token
/
create
Copy
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>"
}'
Copy
{
"link_token": "<string>",
"expiration": "2023-11-07T05:31:56Z",
"request_id": "<string>"
}
Authorizations
Headers
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
Was this page helpful?
Copy
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>"
}'
Copy
{
"link_token": "<string>",
"expiration": "2023-11-07T05:31:56Z",
"request_id": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.