Version 1.10.16
Hi developers!
Welcome to the bunq C# SDK! 👨💻
We're very happy to introduce yet another unique product: complete banking SDKs! Now you can build even bigger and better apps and integrate them with your bank of the free! 🌈
Before you dive into this brand new SDK, please consider:
- Checking out our new developer’s page https://bunq.com/en/developer 🙌
- Grabbing your production API key from the bunq app or generate a Sandbox API key using Tinker 🗝
- Visiting together.bunq.com where you can share your creations, questions and experience 🎤
Give us your feedback, create pull requests, build your very own bunq apps and most importantly: have fun! 💪
This SDK is in beta. We cannot guarantee constant availability or stability. Thanks to your feedback we will make improvements on it.
The sdk_csharp
is hosted on nuget.
Install-Package Bunq.Sdk
dotnet add package Bunq.Sdk
In order to start making calls with the bunq API, you must first register your API key and device, and create a session. In the SDKs, we group these actions and call it "creating an API context". The context can be created by using the following code snippet:
var apiContext = ApiContext.Create(ApiEnvironmentType.SANDBOX, API_KEY, DEVICE_DESCRIPTION);
apiContext.Save();
BunqContext.LoadApiContext(apiContext);
Please note: initializing your application is a heavy task, therefore, all calls in the example above except for
LoadApiContext
should be executed once.
After saving the context, you can restore it at any time:
var apiContext = ApiContext.Restore(API_CONTEXT_FILE_PATH);
BunqContext.LoadApiContext(apiContext);
Tip: both saving and restoring the context can be done without any arguments. In this case the context will be saved
to/restored from the bunq.conf
file in the same folder with your executable.
For an example, see this tinker snippet
The file storing the context details (i.e. bunq.conf
) is a key to your account. Anyone having
access to it is able to perform any Public API actions with your account. Therefore, we recommend
choosing a truly safe place to store it.
There is a class for each endpoint. Each class has functions for each supported action. These
actions can be Create
, Get
, Update
, Delete
and List
.
Sometimes API calls have dependencies, for instance MonetaryAccount
. Making changes to a monetary
account always also needs a reference to a User
. These dependencies are required as arguments when
performing API calls. Take a look at doc.bunq.com for the full
documentation.
The user dependency will always be determined for you by the SDK. For the monetary account, the SDK will use your primary account (the one used for billing) if no monetary account id is provided.
When creating an object, the default response will be the id of the newly created object.
For an example, see this tinker snippet
See PaymentSample.cs
Reading objects can be done via get and list methods. For get a specific object id is needed while for list will return a list of objects.
For an example, see this tinker snippet
Updating objects through the API goes the same way as creating objects, except that also the object to update identifier (ID or UUID) is needed.
For an example, see this tinker snippet
When an object has been deleted, the common respinse is an empty response.
CustomerStatementExport.Delete(customerStatementId);
If you want to play around with the SDK before you actually start implementing something awesome you can use the tinker project and adjust the code in the scripts as you please.
Information regarding the test cases can be found in the README.md located in test.
The SDK can throw multiple exceptions. For an overview of these exceptions please take a look at EXCEPTIONS.md