I'm trying to use Python to change the 'checked_in' status of attendees of an Eventbrite event. Reading the status is quite easy but it's not clear in the reference docs which endpoint needs to be accessed and what all has to be sent. I have some info that the endpoint might be related to the barcodes but I'm not sure.
This psudo-code successfully prints the attendee list:
import requests
import json
url = "/{EVENT_ID}/attendees/?token={TOKEN}"
response = requests.get(url)
if response.status_code == 200:
data = response.json()
for attendee in data['attendees']:
print("######################")
profile = attendee['profile']
print(profile)
else:
print(f"Error: {response.status_code}")
print(response.text)
Another part of the receied JSON data looks like this:
"barcodes": [
{
"status": "unused",
"barcode": "--------------------------------",
"created": "2025-03-19T16:49:30Z",
"changed": "2025-03-19T16:49:30Z",
"checkin_type": 0,
"is_printed": false
}
],
"answers": [],
"checked_in": false,
I'm hoping someone knows the right incantation to use Python requests .put() or .post() to change that "checked_in" value on their server to "true".
Thanks in advance for anything. .
I'm trying to use Python to change the 'checked_in' status of attendees of an Eventbrite event. Reading the status is quite easy but it's not clear in the reference docs which endpoint needs to be accessed and what all has to be sent. I have some info that the endpoint might be related to the barcodes but I'm not sure.
This psudo-code successfully prints the attendee list:
import requests
import json
url = "https://www.eventbriteapi/v3/events/{EVENT_ID}/attendees/?token={TOKEN}"
response = requests.get(url)
if response.status_code == 200:
data = response.json()
for attendee in data['attendees']:
print("######################")
profile = attendee['profile']
print(profile)
else:
print(f"Error: {response.status_code}")
print(response.text)
Another part of the receied JSON data looks like this:
"barcodes": [
{
"status": "unused",
"barcode": "--------------------------------",
"created": "2025-03-19T16:49:30Z",
"changed": "2025-03-19T16:49:30Z",
"checkin_type": 0,
"is_printed": false
}
],
"answers": [],
"checked_in": false,
I'm hoping someone knows the right incantation to use Python requests .put() or .post() to change that "checked_in" value on their server to "true".
Thanks in advance for anything. .
Share Improve this question asked 2 days ago jemiahjemiah 631 silver badge9 bronze badges1 Answer
Reset to default 0I don't believe it's possible for the event anizer to update the checked_in
status of an attendee because the attendee object is private.
This is from the docs
Attendee objects are considered private; meaning that all Attendee information is only available to the User and Order owner.
src: https://www.eventbrite/platform/api#/reference/attendee