How do I get checked-in users in Eventbrite API? - jsonp

I'm starting a developing a custom control panel for Eventbrite
I need to get a list of all users that checked in through their "At the door" App to get a list of only people IN the event to filter people that registered but didn't assist.
I tried event_list_attendees but I see no parameter stating the user status and the get_event method says nothing about attended.
I already tried searching but I found nothing about it so I find it a little weird so if this is a known issue covered someone else, isn't possible or whatever I missed... please point me in the right direction
Thanks

Right now, no "At The Door" information is available through the Eventbrite API.
It's also not possible to use the API to obtain a list of attendees who were checked in by the Eventbrite "Entry Manager" app, but you can get this information through the Eventbrite UI. Here's how:
Log into your Account
Click 'My Events' at the top of the page
Click the 'Completed' tab
Click 'Manage' to the right of the event name
Find the box on the left titled 'Analyze' and click the 'Event Reports' link
Change the Report Type drop down menu to 'Event Attendance vs No Shows'
Use the Check In Status drop down menu to choose 'Checked In' or 'No Shows'
Now you have your list of people who were checked in or did not attend. You can export this list to Excel by clicking the green File Type button

You can verify check in status via event_list_attendees, you just need to include only_display=barcodes, etc... to your request params, you can find the status # /attendees/attendee/barcodes/barcode/status in the response with values used or unused meaning if it has the status of used the ticket has been checked in and so on...

Related

Check some field before opening confirmation box in ODOO

I want to check that if some fields in the form view has been checked or not. If they have been checked then show a confirmation message and if not then a error message saying that those fields must be checked. For this functionality I have created a button which calls a specific function in the model. The button has also attribute confirm which enables the confirmation pop up box. But all the time it first opens the confirmation message and then the checking for the fields. I want to have the other way around how to achieve this. Please help.

Form Submissions via API

I have a form embedded on my website via Hubspot API. I want to receive an email notification if someone submits the form. I tried the solution given on the HubSpot community but it does seem to work.
Here it is https://developers.hubspot.com/docs/methods/forms/submit_form
https://developers.hubspot.com/docs/methods/forms/submit_form_v3
Can anybody provide a solution? TIA.
Under Marketing -> Lead Capture -> Forms, find and open the relevant form. Click the Options tab at the top and in the middle of the page locate Send submission email notifications. Select your user from the drop down list or manually enter an email.

SharePoint List Item View/Read Permission

I am actually new to SharePoint permissions stuff. I really need someone help to guide me or give me a hint.
I have a SharePoint 2013 list, with items. User create a item using Nintex forms and when item is created, Nintex Workflow get trigger.
The idea behind this list is, User A will create a item then User B will review it and approve/reject.
After User A create item, item permission should change to 'Read' so that user A doesn't change any value of item until user B take some action.
In Workflow, I am changing the item permission using 'Set Item Permission' action and setting permission as Read.
But the problem is after
1) User A created item, he is not able to view/read item but able to edit item.
I selected item through list and click on 'view item' through ribbon, I am getting error 'Sorry, you don't have access to his page'.
I clicked on eclipse of item, selected Shared with->ADVANCED I am seeing the user A have view/read permission.
Then I made sure through 'Workflow history' if action got executed or not, it seems action got executed successfully.
This is really weird how user is able to edit item but not able to view item?
I really appreciate if anyone can provide any hint or help to make item readable.
Can you click on the list item, and check permissions for that item. You can click on Shared With -> Advanced. Then from the ribbon choose Check permissions. Enter the User A name and see what permissions he has.
And if he has more than Read, it means workflow has not finished its job. So check the workflow. It should break any inheriting permissions on that list item and then set unique permissions for only User B. This will take away the permissions from User A.
A second approach would be to make a form status column and connect it to submit button.
Return a value eg. Submitted to the column once the form is submitted by A.
Now in nintex form designer,select the control and add rule to disable the control if form status == "Submitted".

How to get data that is in the Notes (Quickbooks Notepad) in ItemInventory

I can't find any way to get to the data stored in the Quickbooks Item 'Notes'.
I am referring to the 'Notes' button on ItemInventory 'Edit Item' Dialog. Once you hit the Notes button, it opens a 'Notepad' and you can enter in text in a large textbox.
Can someone help with the correct API function call to get to this data? I didnt see it in the ItemInventoryQuery Response.
That data is not available and as you said not listed in the OSR.

Is there a way to detect when the Facebook permissions dialog is shown?

I'm using the FB Javascript SDK, and handling login via a custom button that calls FB.login. Ideally, I'd like to be able to record some tracking data whenever a user is shown the app approval/permissions dialog so that I can see how many users bomb out at this stage. Unfortunately, I can't seem to find a reliable way of achieving this.
If the user is already logged in to FB, I can infer whether it will be shown by checking the login status before calling FB.login. If the user is not_authorized, then I know the permissions dialog will be shown. But if the user is not logged in, my information is more limited. I can assume that the user was shown the dialog if they finish the process as not_authorized, but if they end up being connected then I have no way of distinguishing between a user who was already connected and one who just gave approval.
I'd hoped that the auth.prompt event might help, but it doesn't seem to be fired for the sequence starting from FB.login. Any suggestions?
Ideally, I'd like to be able to record some tracking data whenever a user is shown the app approval/permissions dialog so that I can see how many users bomb out at this stage.
Look at your app insights, there you’ll see Auth Dialog Conversions.
No need for own tracking for that.