I am attempting to end my billing from plaid’s api services. Somehow their web app has no method of doing so and they require us to make an API call to remove the item. This is next level. First I have to get my access token. I thought I deleted my account months ago but the dashboard under billing still shows this message:
ACCOUNT NOTICE
This team will be deleted soon. If you have any issues, please contact Support
Here I am still being billed, stupid.
from plaid import Client
request = ItemPublicTokenExchangeRequest(public_token=public_token)
response = client.item_public_token_exchange(request)
access_token = response['access_token']
item_id = response['item_id']
Getting this error : NameError: name 'ItemPublicTokenExchangeRequest' is not defined
link: https://plaid.com/docs/api/items/#itempublic_tokenexchange
Anyone know how I can retrieve my access token so I can finally delete this shit?