Discussions

Ask a Question

Does Boomset integrate with Zapier.com?

Before I go ahead and create an integration using your API, would like to know if an integration with Zapier exists.

From a Non Technical Person

Is is feasible for me to use the API to push event data to a Boomset account? Looking at the videos I can see, sites like Eventbrite and Meetup have a direct way to import from the boomset interface. Is it possible for me to accomplish the same action from my own interface by asking for credentials or? Thanks for your patience with my non-technical mind.

Upload participants to an event

We noticed it is possible to update a participant using the API, but not that it is possible to create new participants using the API. Is it possible to upload / create new participants in boomset using the API or an interface which does not require the user to do this manually in the interactive website? Gr, Robert

Why is the Zapier logo on your website, but there is no integration?

I noticed a thread here on support asking about a Zapier integration, to which you said no - but, your website says you have by displaying the Zapier logo on the front page. Has something changed since June 16th? Is this something you are actively working on? Thank you.

Add Attendee

I've tried to use the Add Attendee endpoint both in my own development and also with the API Explorer on your api docs page and both return a 404 response. I believe I'm including the required fields and authentication token correctly. The other requests return as expected. It's just the add attendee endpoint that isn't working for me. Any help would be appreciated!

Adding sessions via API

It looks like many pieces of event data can be created via your API. Is it possible to populate sessions via the API also?

Whu links are the same?

We have 2 different posts: sending ticket and sending registration confirmation. Why links are the same, but only with different params? Links: https://www.boomset.com/restapi/reservation/settings/:reservationID/send_ticket https://www.boomset.com/restapi/reservation/settings/:registration_id/send_ticket

How to get a token or u/p

How do I get a token or U/P for testing the API endpoints?

Updating "QR Code" via API

I know that you guys can print badges, can we update the QR codes via your API so that we can use our own QR code and update them directly from registration.

C# RestSharp "Could not create SSL/TLS secure channel"

Using framework 4.6.1 with TLS1.2 I have integrated RestSharp with Zoom, but not with boomset. I've exhausted my online search for code adjustments. Here is where I have left off: System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls12; var client = new RestClient("https://api.boomset.com/groups"); var certFile = "C:\\\\iMIS\\Godaddy2022.pfx"; System.Security.Cryptography.X509Certificates.X509Certificate2 certificate = new System.Security.Cryptography.X509Certificates.X509Certificate2(certFile, "password"); client.ClientCertificates = new System.Security.Cryptography.X509Certificates.X509CertificateCollection() { certificate }; client.Proxy = new WebProxy(); var request = new RestRequest(Method.GET); request.AddHeader("Accept", "*/*"); request.AddHeader("Accept-Encoding", "gzip, deflate, br"); request.AddHeader("Connection", "keep-alive"); request.AddHeader("Authorization", "Token 8a22d14aedda9620bcb3d91ab927d5b0"); request.AddHeader("Cache-Control", "no-cache"); request.RequestFormat = DataFormat.Json; IRestResponse response = client.Execute(request);