Reputation: 1192
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
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
Reputation: 165
You can unregister the user which effectively deletes all of the user’s accounts.
Upvotes: 0