DesterradumRookie
I'm not a developer. Decoding all the documentation and all other plentiful resources online like the unreadable 640p video on the Bunq youtube, the main bunq developer page steps, and even the full documentation and beta documentation, including the Python-Wrapper on Github were all not enough for me to figure out how to work the API and create a practical example to work from. Pretty certain this has been written strictly for professional developers but a simpler python example would have helped me greatly :)
Here's what I'm trying to get working:
`from bunq.sdk.context.bunq_context import ApiContext
from bunq import Pagination
apiContext = ApiContext.create("SANDBOX", "02381a10642000000000357f3f1455546624562400000000120ef3300555557ef", "D1")
apiContext.save("/api_context")
pagination = Pagination()
pagination.count = count
all_monetary_account_bank = endpoint.MonetaryAccountBank.list(
Pagination.url_params_count_only
).value
print(pagination)`
I'm only guessing PRODUCTION and SANDBOX are the types I can input because I can't find it anywhere. But this returns a str error. Could someone help me set up a simple example so I can work from there?