cURL
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>" }
LinkTokenCreateRequest defines the request schema for /link/token/create
/link/token/create
OK
LinkTokenCreateResponse defines the response schema for /link/token/create
Was this page helpful?