Bevy API GDG
  1. Membership
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. Membership

Add Membership

Developing
POST
/chapter/{chapterId}/member/
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/chapter/642/member/' \
--header 'Accept: application/json; version=bevy.1.0' \
--header 'Accept-Encoding: gzip, deflate, br, zstd' \
--header 'Accept-Language: en' \
--header 'Origin: https://gdg.community.dev' \
--header 'Referer: https://gdg.community.dev/events/details/google-gdg-jakarta-presents-test-event/' \
--header 'Sec-Ch-Ua: "Not/A)Brand";v="8", "Chromium";v="126", "Google Chrome";v="126",,' \
--header 'Sec-Ch-Ua-Mobile: ?0' \
--header 'Sec-Ch-Ua-Platform: "macOS"' \
--header 'Sec-Fetch-Dest: empty' \
--header 'Sec-Fetch-Mode: cors' \
--header 'Sec-Fetch-Site: same-origin' \
--header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36' \
--header 'X-Csrftoken: P5ezA01RuCxmYDm9QMsHdoD3JTenLLJv49gWeqY0WJEvGGleewVTZs0V9PdOsdNK' \
--header 'Cookie: cookie_consent_is_true=true; csrftoken=SepXnnDWxW4Ieti8a8QzxMSm6lCIGujZ7irk1NA5Z3bRWwhdySjLjQfewhB9nWne; sessionid=chueufwydydghuxre58pts0ahebqqeh1; __stripe_mid=662df390-c006-4032-b838-aa01b3aa10bd5a70c4; __stripe_sid=e3b33fde-a59a-41f0-83ef-86466d6bfa7ba4d0e6; correlation_key="google/99a50a06-2f56-4fe1-94b5-1cf6f23baa57"' \
--header 'Content-Type: application/json' \
--data-raw '{
    "event": "string",
    "attendees": [
        {
            "first_name": "string",
            "last_name": "string",
            "email": "string",
            "ticket_title": "string",
            "ticket_audience_type_enum_value": "string",
            "send_event_email": true
        }
    ]
}'
Response Response Example
[
    {
        "id": 0,
        "attendee_uuid": "string",
        "attendee_code": "string",
        "first_name": "string",
        "last_name": "string",
        "email": "string",
        "title": "string",
        "company": "string",
        "twitter": null,
        "avatar": {},
        "profile_url": "string",
        "featured": null,
        "event": 0,
        "masked_email": "string",
        "order_id": null,
        "discount_code": null,
        "user": {
            "id": 0,
            "first_name": "string",
            "last_name": "string",
            "username": "string",
            "email": "string"
        },
        "user_id": 0,
        "chapter_member_id": null,
        "created_date": "string",
        "checkin_date": null,
        "deleted_date": null,
        "paid_price": null,
        "paid_currency": null,
        "ticket_title": null,
        "ticket_audience_type_enum_value": null,
        "is_checked_in": true,
        "status": "string",
        "origin_app": "string",
        "event_chapter_id": 0,
        "cohost_registration_chapter": null,
        "cohost_registration_chapter_title": null,
        "name": "string"
    }
]

Request

Path Params
chapterId
integer 
required
Example:
642
Header Params
Accept
string 
required
Example:
application/json; version=bevy.1.0
Accept-Encoding
string 
required
Example:
gzip, deflate, br, zstd
Accept-Language
string 
required
Example:
en
Content-Type
string 
required
Example:
application/json
Cookie
string 
required
Update Cookie with your actual Cookie from Bevy Headers
Example:
cookie_consent_is_true=true; csrftoken=SepXnnDWxW4Ieti8a8QzxMSm6lCIGujZ7irk1NA5Z3bRWwhdySjLjQfewhB9nWne; sessionid=chueufwydydghuxre58pts0ahebqqeh1; __stripe_mid=662df390-c006-4032-b838-aa01b3aa10bd5a70c4; __stripe_sid=e3b33fde-a59a-41f0-83ef-86466d6bfa7ba4d0e6; correlation_key="google/99a50a06-2f56-4fe1-94b5-1cf6f23baa57"
Origin
string 
required
Example:
https://gdg.community.dev
Referer
string 
required
Update Referer with your actual Referer from Bevy Headers
Example:
https://gdg.community.dev/events/details/google-gdg-jakarta-presents-test-event/
Sec-Ch-Ua
string 
required
Example:
"Not/A)Brand";v="8", "Chromium";v="126", "Google Chrome";v="126",,
Sec-Ch-Ua-Mobile
string 
required
Example:
?0
Sec-Ch-Ua-Platform
string 
required
Example:
"macOS"
Sec-Fetch-Dest
string 
required
Example:
empty
Sec-Fetch-Mode
string 
required
Example:
cors
Sec-Fetch-Site
string 
required
Example:
same-origin
User-Agent
string 
required
Example:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36
X-Csrftoken
string 
required
Update CsrfToken with your actual CsrfToken from Bevy Headers
Example:
P5ezA01RuCxmYDm9QMsHdoD3JTenLLJv49gWeqY0WJEvGGleewVTZs0V9PdOsdNK
Body Params application/json
event
string 
required
attendees
array [object {6}] 
required
first_name
string 
optional
last_name
string 
optional
email
string 
optional
ticket_title
string 
optional
ticket_audience_type_enum_value
string 
optional
send_event_email
boolean 
optional
Examples

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
Check Order by ID
Next
Get Main Stage Video
Built with