python - Change the attendee checked_in value via the Eventbrite Web API - Stack Overflow

I'm trying to use Python to change the 'checked_in' status of attendees of an Eventbrite

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 badges
Add a comment  | 

1 Answer 1

Reset to default 0

I 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

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743811529a4511132.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信