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

Add Attendees

POST
/attendee/
Attendee
Register users to a specific event. This method will not process any payments. Note that we are continuing to test this endpoint, and it is, therefore, subject to change. Meanwhile, if you have any questions about the present state, contact us at help.bevy.com. This endpoint only works for in-person events.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/attendee/?event=88619&chapter=642' \
--header 'Referer: https://gdg.community.dev/dashboard/gdg-jakarta/events/88619/registrations' \
--header 'X-Csrftoken: MwN4XUZPvMtzDX2gEaH8z7cEMYT8ngaDTmgjo2UaPZLIZfPOanleNh7MvxsD5faR' \
--header 'Content-Type: application/json' \
--data-raw '{
  "event": 88619,
  "attendees": [
    {
      "first_name": "Fachridan Tio",
      "last_name": "- Regular Ticket",
      "email": "fachridantm@gmail.com",
      "send_event_email": true
    }
  ]
}'
Response Response Example
201 - Example 1
{
    "attendees": [
        {
            "id": 2345,
            "first_name": "John",
            "last_name": "Doe",
            "email": "johndoe@mail.com",
            "user_id": 1243
        }
    ]
}

Request

Query Params
event
string 
optional
The ID of the event to retrieve the attendee list for.
Example:
88619
chapter
string 
optional
The ID of the chapter to retrieve the attendee list for.
Example:
642
Header Params
Content-Type
string 
optional
Example:
application/json
Referer
string 
optional
Example:
https://gdg.community.dev/dashboard/gdg-jakarta/events/88619/registrations
X-Csrftoken
string 
optional
Example:
MwN4XUZPvMtzDX2gEaH8z7cEMYT8ngaDTmgjo2UaPZLIZfPOanleNh7MvxsD5faR
Body Params application/json
event
integer 
required
Example:
1234
attendees
array [object {4}] 
required
first_name
string 
required
Example:
John
last_name
string 
required
Example:
Doe
email
string 
required
Example:
johndoe@mail.com
user
integer  | null 
optional
optional
Example:
1234
Examples

Responses

🟢201Created
application/json
attendees created.
Body
attendees
array [object {5}] 
optional
id
integer 
optional
Example:
2345
first_name
string 
optional
Example:
John
last_name
string 
optional
Example:
Doe
email
string 
optional
Example:
johndoe@mail.com
user_id
integer 
optional
Example:
1243
🟠400Bad Request
🟠403Forbidden
Next
Get Attendee Search
Built with