• Google Spreadsheets support with Google Scripts and Bunq API

Hi, does somebody got an idea/experience on how to integrate the Bunq API with Google Spreadsheets via e.g. Google Scrips (https://script.google.com)?

I want to auto populate / import transactions for several purpose​s without having to do any export/copy/paste actions with CSV's.

Thanks

    You'd need a proxy service which lets you authenticate with Google and the bunq API. Should be reasonably easy to do by authenticating with OAuth on your service so it has read-only access. And then let your Google script send requests to that service which outputs the data you want.

    Due to how bunq handles the authentication I doubt it'll be possible to connect directly with bunq from your Google scripts.

      a year later

      In the bunq update 13 Ali shows that it is very easy, even if you have no coding experience. I looked around, but I can't find an easy description of how to connect it. Maybe bunq could show us how?

        Binnen Google Sheets kan je de Add-on API-Connector installeren en daarmee verbinding met de Bunq API maken. Ik heb dit zojuist geprobeerd maar loop tegen mijn API kennis limitatie aan ;)
        Als iemand een stap-voor-stap beschrijving heeft hoe men een API verbinding maakt en in Sheets importeert, dat zou top zijn!

          @JeroenE#143521 het kan tegenwoordig ook met de versimpelde API. 🙂

          @Marcel-Daxy#143590 er zat een code voorbeeld in de update. Heb je die al teruggekeken en dat als voorbeeld gebruikt? Misschien dat @ali zijn code met ons wil delen. I'll ask him tbh. 😁👍

            @Sander#143636 Aha, er is geen topic op Together over het aansluiten van Google Sheets op de bunq API zover ik weet. Kijk ik er over heen?

            Google Sheets kan dan een bunq QR code laten scannen zodat die via de API toegang krijgt?

              @Sander#143636 Alleen in de update demo mist helaas het authenticatie proces, voor het ophalen van de sessie token. En tevens het aanmaken van de statement export (CSV) welke hij importeert.

                @JeroenE#143641 nee, is er ook niet. Google sheets is toevallig het gebruikte voorbeeld uit de update om te laten zien wat er mogelijk is met de versimpelde API authenticatie.(Alleen een Auth token nodig om data op te vragen als ik het goed heb onthouden).

                I've asked Ali and he replied already that he didn't have his laptop near at the moment but he immediately gave me contact details of the right person, so 🤞, I'll ask for a sample of the entire process if possible. 😁

                  Excellent. Ik kan ondertussen wel een OAuth connectie aanmaken, ik heb dus een API key. Alleen lukt het nog niet om enige data binnen te halen (lijst van users bijvoorbeeld). Zodra dit lukt dmv curl, dan kan dit (volgens mij) ook binnen Sheets met de API connector gedaan worden.

                    @Marcel-Daxy#143648 met een API key/OAuth thing you can set up a session to obtain a session token. That one you need to access info using curl. 🙂

                    Edit: just heard they are working on sharing the examples 😁😁

                      The simplified access looks great, looking forward to the examples!

                      In the meantime, you could use the EasyList project that was done for the Hackathon:
                      https://easylist.aule.net/
                      See the "Google Sheets example" button for how to get an auto-refreshing sheet.

                        Hi guys, here's the script we used during bunq Update 13. Feel free to adjust it the way you need it :) Make sure to set the right separator for your region (try "," if ";" doesn't work).

                        function BUNQIMPORT(path) {
                        var response = UrlFetchApp.fetch(
                        'https://api-public.sandbox.bunq.com/v1/user/{{user_id}}/monetary-account/{{monetary_account_id}}/customer-statement/customer_statement_id/content', {
                        'headers': {
                        'X-Bunq-Client-Authentication': '{{session_token}}'
                        }
                        })


                        var sheet = SpreadsheetApp.getActiveSheet();
                        var csvData = Utilities.parseCsv(response, ";");
                        return csvData;
                        }

                          @lexy-Blue-Panda#143827 Hi Lexi, thanks for posting the snippet.

                          Say I'm a bookkeeper and I want to set up a spreadsheet. How would I go about getting a session token?

                            I've been fighting with this all-day, and although I haven't done the import into Google Sheets (through API-Connector), getting a basic understanding through cURL should help. I've documented my experience here: https://together.bunq.com/d/24919-getting-started-with-bunq-api-through-curl-a-step-by-step-tutorial

                            Using practically the same procedure from the tutorial I wrote I am now able to use the API-Connection Add-On in Google Sheets. Through this I can now get a list of all transactions available in the Sandbox (none, add one manually first 😀 ).

                              So how do i find out what i should set for {user_id} and {monetary_account_id}??

                                @Auke-Grey-Swan#144542 you need to get your IDs by making API calls:
                                - {user_id}: GET /user/
                                - {monetary_account_id}: GET /user/{user_id}/monetary-account
                                - you'll also need a customer statement ID: GET /user/{user_id}/monetary-account/{monetary_account_id}/customer-statement

                                The easiest way to do it is by using our Postman collection: https://github.com/bunq/postman

                                Use these requests to get the IDs you need for the request:
                                - Get user info
                                - List monetary accounts (save the ID of the account you want to read/create a statement for)
                                - List customer statements (save the ID of the statement you want to fetch data from)

                                You need to create a customer statement first. You can do it in the app or in Postman using Create a customer statement. You'll need to specify the start and end date in the request body. Here's an example:

                                  21 days later

                                  @Willem-Orange-Quokka#147915 Looks like the sandbox version is broken. Perhaps the sandbox environment was reset. I’ll see if I can reregister it later this week.

                                    @wesselt#147921 Aight, reading this line "Anyone with the URL can request transactions" -- does this mean you have access to my account on that level if I grant access to the production one?