Tamdim
Tamdim

Reputation: 1192

Yodlee: How to delete every user's linked accounts in a single API call

How can delete all of user's linked accounts without having to make multiple API calls for each account or unregistering the user? I currently using documented /accounts/ endpoint to delete each one however sending a separate requests for each deletion takes far too long for users with multiple accounts.

Upvotes: 0

Views: 386

Answers (2)

chris hyun ho kim
chris hyun ho kim

Reputation: 37

You can delete the providerAccount and it will delete all associated accounts. e.g., DELETE https://developer.yodlee.com/providerAccounts/{providerAccountId}

Upvotes: 0

HarshaKA
HarshaKA

Reputation: 165

You can unregister the user which effectively deletes all of the user’s accounts.

Upvotes: 0

Related Questions