Plaid.NET icon indicating copy to clipboard operation
Plaid.NET copied to clipboard

Updating Items via Link

Open momin4073 opened this issue 3 years ago • 1 comments

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 avatar May 19 '22 18:05 momin4073

@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;

viceroypenguin avatar Jul 04 '22 13:07 viceroypenguin