Bevy API GDG
  1. User
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 Chapter Regions
    • Create Chapter
    • List chapters
    • Get Chapter by ID
    • List Chapter Events
    • List Chapter Members
    • Add Chapter Member
    • List Chapter Team
    • Add Chapter Team Member
    • Update Chapter Team Member
    • Partial Update Chapter Team Member
    • Delete Chapter Team Member
    • Add chapter's members in batch
    • Delete chapter's member
  • 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
    • Get User by ID or Email
      GET
    • Update User
      PATCH
    • Delete User
      DELETE
    • Deactivate User
      POST
    • List user's events
      GET
    • List user's chapters
      GET
    • List user's chapter teams
      GET
    • Create Prospective User
      POST
    • Opt out of emails
      POST
    • Get User Counts
      GET
  1. User

List user's events

GET
/user/{user_id}/event/
User
Retrieves a list of event records for the given user.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/user//event/'
Response Response Example
200 - Example 1
{
    "count": 1,
    "links": {
        "previous": null,
        "next": null
    },
    "pagination": {
        "current_page": 1,
        "next_page": 2,
        "page_size": 500,
        "previous_page": null
    },
    "results": [
        {
            "chapter": {
                "id": 1234,
                "title": "University of Science",
                "url": "https://instance.bevy.com/university-of-science/",
                "city": "Abbottabad"
            },
            "checkin_date": "2024-01-09T17:59:22Z",
            "created_date": "2024-01-09T17:59:22Z",
            "event": {
                "allows_cohosting": false,
                "checkin_count": 0,
                "cohost_registration_url": "https://instance.bevy.com/events/details/chapter-2024-presents/",
                "end_date": "2024-01-09T17:59:22Z",
                "id": 1234,
                "start_date": "2024-01-09T17:59:22Z",
                "status": "Draft",
                "title": "Chapter 2024",
                "total_attendees": 0,
                "total_revenue": 0,
                "total_tickets_sold": false,
                "url": "https://instance.bevy.com/events/details/chapter-2024-presents/"
            }
        }
    ]
}

Request

Path Params
user_id
string 
required
The ID of the user to retrieve events for.

Responses

🟢200OK
application/json
successful operation
Body
count
number 
optional
Example:
1
links
object (Links) 
optional
previous
string  | null 
required
Example:
null
next
string  | null 
required
Example:
null
pagination
object (Pagination) 
optional
current_page
number 
required
Example:
1
next_page
number  | null 
required
Example:
2
page_size
number 
required
Example:
500
previous_page
number  | null 
required
Example:
null
results
array [object {4}] 
optional
chapter
object 
optional
checkin_date
string 
optional
Example:
2024-01-09T17:59:22Z
created_date
string 
optional
Example:
2024-01-09T17:59:22Z
event
object (EventSummary) 
optional
🟠403Forbidden
Previous
Deactivate User
Next
List user's chapters
Built with