Bevy API GDG
  1. Attendee
Bevy API GDG
  • Attendee
    • Add Attendees
      POST
    • Get Attendee Search
      GET
    • Update Attendee
      PUT
    • Send Event Email
      PUT
    • Resend Event Email
      POST
    • Get Event Attendees
      GET
    • Checkin Attendee
      PUT
    • Delete attendee registration
      DELETE
    • Get Attendee by ID
      GET
    • Delete all attendee registrations by event
      DELETE
  • Order
    • Add Order
      POST
    • Update Order
      PUT
    • Check Order by ID
      GET
  • Membership
    • Add Membership
      POST
  • Bevy Virtual
    • Get Main Stage Video
      GET
    • Get Session Video IDs
      GET
    • Get Session Video URLs
      GET
  • Chapter
    • Get Chapters Status
      GET
    • Get Chapter Regions
      GET
    • Create Chapter
      POST
    • List chapters
      GET
    • Get Chapter by ID
      GET
    • List Chapter Events
      GET
    • List Chapter Members
      GET
    • Add Chapter Member
      POST
    • List Chapter Team
      GET
    • Add Chapter Team Member
      POST
    • Update Chapter Team Member
      PUT
    • Partial Update Chapter Team Member
      PATCH
    • Delete Chapter Team Member
      DELETE
    • Add chapter's members in batch
      POST
    • Delete chapter's member
      DELETE
  • Cohosted Events
    • List collaborating chapters
    • Delete cohosted event
    • Add all chapters as cohosts
    • Chapters a user can add as a cohost
  • Event
    • Get Event Counts
    • Get Event by ID
    • List events
    • List event types
    • Get Event Type by ID
    • List Event Attendees
    • List event tags
  • Search
    • Search chapters
    • Search events
  • User
    • List users
    • Get User by ID or Email
    • Update User
    • Delete User
    • Deactivate User
    • List user's events
    • List user's chapters
    • List user's chapter teams
    • Create Prospective User
    • Opt out of emails
    • Get User Counts
  1. Attendee

Send Event Email

Developing
PUT
/attendee/{attendee_id}/send_event_email/
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/attendee//send_event_email/?chapter=642' \
--header 'Referer: https://gdg.community.dev/dashboard/gdg-jakarta/events/88619/registrations' \
--header 'X-Csrftoken: MwN4XUZPvMtzDX2gEaH8z7cEMYT8ngaDTmgjo2UaPZLIZfPOanleNh7MvxsD5faR' \
--header 'Content-Type: application/json'
Response Response Example
[
    {
        "id": 1106647,
        "attendee_uuid": "76bfce64-485e-4bc1-b0b4-c899ec1295ea",
        "attendee_code": "GOOGA241106647",
        "first_name": "tes",
        "last_name": "tes",
        "email": "tes3@tes.com",
        "title": "",
        "company": "",
        "twitter": null,
        "avatar": {},
        "profile_url": "/u/mz5fge/",
        "featured": null,
        "event": 68970,
        "masked_email": "t***@tes.com",
        "order_id": null,
        "discount_code": null,
        "user": {
            "id": 1057519,
            "first_name": "tes",
            "last_name": "tes",
            "username": "mz5fge",
            "email": "t***@tes.com"
        },
        "user_id": 1057519,
        "chapter_member_id": null,
        "created_date": "2024-07-20T04:54:58.391925Z",
        "checkin_date": null,
        "deleted_date": null,
        "paid_price": null,
        "paid_currency": null,
        "ticket_title": null,
        "ticket_audience_type_enum_value": null,
        "is_checked_in": false,
        "status": "registered",
        "origin_app": "",
        "event_chapter_id": 642,
        "cohost_registration_chapter": null,
        "cohost_registration_chapter_title": null,
        "name": "tes tes"
    }
]

Request

Path Params
attendee_id
integer 
required
The ID of the attendee to retrieve.
Query Params
chapter
string 
optional
Chapter ID
Example:
642
Header Params
Content-Type
string 
required
Example:
application/json
Referer
string 
required
Example:
https://gdg.community.dev/dashboard/gdg-jakarta/events/88619/registrations
X-Csrftoken
string 
required
Update CsrfToken with your actual CsrfToken from Bevy Headers
Example:
MwN4XUZPvMtzDX2gEaH8z7cEMYT8ngaDTmgjo2UaPZLIZfPOanleNh7MvxsD5faR

Responses

🟢201Created
application/json
Body
array of:
id
integer 
optional
attendee_uuid
string 
optional
attendee_code
string 
optional
first_name
string 
optional
last_name
string 
optional
email
string 
optional
title
string 
optional
company
string 
optional
twitter
null 
optional
avatar
object 
optional
profile_url
string 
optional
featured
null 
optional
event
integer 
optional
masked_email
string 
optional
order_id
null 
optional
discount_code
null 
optional
user
object 
optional
id
integer 
required
first_name
string 
required
last_name
string 
required
username
string 
required
email
string 
required
user_id
integer 
optional
chapter_member_id
null 
optional
created_date
string 
optional
checkin_date
null 
optional
deleted_date
null 
optional
paid_price
null 
optional
paid_currency
null 
optional
ticket_title
null 
optional
ticket_audience_type_enum_value
null 
optional
is_checked_in
boolean 
optional
status
string 
optional
origin_app
string 
optional
event_chapter_id
integer 
optional
cohost_registration_chapter
null 
optional
cohost_registration_chapter_title
null 
optional
name
string 
optional
Previous
Update Attendee
Next
Resend Event Email
Built with