最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin1浏览0评论

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

发布评论

评论列表(0)

  1. 暂无评论