Skip to content

Commit

Permalink
Fix examples in ReadMe
Browse files Browse the repository at this point in the history
  • Loading branch information
victory-sokolov committed Mar 10, 2023
1 parent ffdf883 commit 8b4a8a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ After successful authorization with a bank you can fetch your data (details, bal
# Get account id after you have completed authorization with a bank.
requisition_data = client.requisition.get_requisition_by_id(requisition_id)
# Get account id from list
account_id = accounts["accounts"][0]
account_id = requisition_data["accounts"][0]

# Instantiate account object
account = client.account_api(account_id)
account = client.account(account_id)

# Fetch account metadata
meta_data = account.get_metadata()
Expand Down

0 comments on commit 8b4a8a3

Please sign in to comment.