Plaid.NET
Plaid.NET copied to clipboard
Updating Items via Link
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"
}'
@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;