We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How does one achieve creating link token in update mode ?
https://plaid.com/docs/link/update-mode/
curl -X POST https://sandbox.plaid.com/link/token/create -H 'Content-Type: application/json' -d '{ "client_id": "CLIENT_ID", "secret": "SECRET", "client_name": "My App", "user": { "client_user_id": "UNIQUE_USER_ID" }, "country_codes": ["US"], "language": "en", "webhook": "https://webhook.sample.com", "access_token": "ENTER_YOUR_ACCESS_TOKEN_HERE" }'
The text was updated successfully, but these errors were encountered:
@momin4073 - You should switch to Going.Plaid, which is being updated. Under Going.Plaid, creating a new link token in update mode is relatively easy:
var response = await client.LinkTokenCreateAsync( new() { AccessToken = "existing access_token", ... <other properties as above/necessary> }); var token = response.LinkToken;
Sorry, something went wrong.
No branches or pull requests
How does one achieve creating link token in update mode ?
https://plaid.com/docs/link/update-mode/
curl -X POST https://sandbox.plaid.com/link/token/create
-H 'Content-Type: application/json'
-d '{
"client_id": "CLIENT_ID",
"secret": "SECRET",
"client_name": "My App",
"user": { "client_user_id": "UNIQUE_USER_ID" },
"country_codes": ["US"],
"language": "en",
"webhook": "https://webhook.sample.com",
"access_token": "ENTER_YOUR_ACCESS_TOKEN_HERE"
}'
The text was updated successfully, but these errors were encountered: