Discussions

Ask a Question

hamsite

<p><a target="_self" href="https://hamsite.co/">آژانس دیجیتال مارکتینگ</a>&nbsp;هم سایت یکی از بهترین شرکت های ارائه دهنده خدمات دیجیتال مارکتینگ در تهران است. خدمات این آژانس شامل انواع&nbsp;<a target="_self" href="https://hamsite.co/services/site/seo/">سئو</a>&nbsp;و بهینه سازی ها و همینطور&nbsp;<a target="_self" href="https://hamsite.co/services/site/website-designing/">طراحی سایت</a> با تیمی حرفه ای و مسلط به این پروژه هاست. همینطور&nbsp;<a target="_self" href="https://hamsite.co/services/social/pinterest/follower-pinterest/">افزایش فالوور پینترست</a> و همینطور خدماتی در جهت <a target="_self" href="https://hamsite.co/services/social/pinterest/like-pinterest/">افزایش لایک پینترست</a> می شود. سرویس های این مجموعه شامل <a target="_self" href="https://hamsite.co/services/social/twitter/view-twitter/">خرید ویو توییتر</a> و خدماتی برای <a target="_self" href="https://hamsite.co/services/social/twitter/like-twitter/">خرید لایک توییتر</a> و <a target="_self" href="https://hamsite.co/services/social/twitter/follower/">خرید فالوور توییتر</a> می شود. تیم هم سایت در <a target="_self" href="https://hamsite.co/ganjineh/blogs/comments-bazar">خرید نظر بازار</a> نیز فعالیت می کند. سرویس های ارائه شده در این حوزه شامل <a target="_self" href="https://hamsite.co/services/social/youtube/increase-youtube-views/">افزایش بازدید یوتیوب</a> ، <a target="_self" href="https://hamsite.co/services/social/youtube/like-youtube/">افزایش لایک یوتیوب</a> و <a target="_self" href="https://hamsite.co/services/social/youtube/audience-youtube/">افزایش فالوور یوتیوب</a> می شود. این مجموعه در رسانه محبوب تیک تاک نیز در جهت <a target="_self" href="https://hamsite.co/services/social/tiktok/like-tiktok/">افزایش لایک تیک تاک</a> و <a target="_self" href="https://hamsite.co/services/social/tiktok/follower-tiktok/">افزایش فالوور تیک تاک</a> فعالیت میکند. این مجموعه خدماتی برای شبکه اجتماعی فیسبوک، شامل <a target="_self" href="https://hamsite.co/services/social/facebook/followers-facebook/">افزایش فالوور فیسبوک</a> و همینطور خدماتی در جهت <a target="_self" href="https://hamsite.co/services/social/facebook/like-facebook/">افزایش لایک فیسبوک</a>&nbsp;ارائه میدهد.&nbsp;با این مجموعه بهترین خدمات از جمله <a target="_self" href="https://hamsite.co/ganjineh/blogs/verified-badge">خرید تیک آبی اینستاگرام</a> که این روزها خیلی از افراد به دنبال آن هستند و &nbsp;این شرکت <a target="_self" href="https://hamsite.co/ganjineh/blogs/google-knowledge-graph">گوگل نالج</a> و خیلی خدمات دیگری را انجام می دهد. خیلی خدمات دیگر مثله &nbsp;<a target="_self" href="https://hamsite.co/services/advertisig-and-branding/send-notifications/">ارسال پوش نوتیفیکیشن</a> و <a target="_self" href="https://hamsite.co/services/social/instagram/likes-and-comments">خرید لایک اینستاگرام</a> را انجام میدهد. در ضمن <a target="_self" href="https://hamsite.co/cost-result-ads">تبلیغات نتیجه محور</a> هم این مجموعه انجام میدهد و این توانایی ها خیلی خوب و مفید برای همه کسب و کارها خوب هست.</p>

Guest list API endpoint includes incorrect next/previous URLs

When I sent a request to `GET https://api.boomset.com/events/123/guests?load_start=2023-01-10T14%3A33%3A14&page=2&page_size=250` I get back a JSON response that starts: ```json { "count": 535, "next": "https://api.boomset.com/rest/events/123/guests?load_start=2023-01-10T14%3A33%3A14&page=3&page_size=250", "previous": "https://api.boomset.com/rest/events/123/guests?load_start=2023-01-10T14%3A33%3A14&page=1&page_size=250", "results": [ ] } ``` The `next` and `previous` URLs in the response include a `/rest` path fragment, which shouldn't be there. Sending a GET request to either of these URLs returns a 404 Not Found (with an HTML "Oops..." page) Is this a bug in the API?

UpdateEvent API end point not working

Here is our sample code $data = array('event_id'=>'121429','data'=>array('id'=>'121429','name'=>'test')); $client = new \GuzzleHttp\Client(); $settings = parse_ini_file($_SERVER["DOCUMENT_ROOT"]."/config.ini"); try { $response = $client->request('PUT', 'https://api.boomset.com/events/'.$data['event_id'], [ 'body' => json_encode($data['body']), 'headers' => [ 'accept' => 'application/json', 'content-type' => 'application/json', 'Authorization' =>'Token '.$settings['authorization'] ] ]); echo $response->getBody(); } catch (Exception $ex) { echo json_encode($response); } We are getting a null response

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);

How do you get session attendance when there are multiple concurrent tracks?

Event has 2 tracks, and need to know if they attended the 1st or 2nd track for that time slot. The guests know to scan their barcode when entering the session room so that it will print on their continuing education certificate. I've looked at the Session detail and guest detail, but it is not apparent to me where actual session attendance is stored.

Can we use badge printing without storing data on boomset?

We need kiosk badge printing and event checkin functionality. Would you provide us, without saving data on boomset account?

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.

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

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.