Bevy API GDG
  1. Chapter
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
  • Bevy Virtual
    • Get Main Stage Video
    • Get Session Video IDs
    • Get Session Video URLs
  • 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. Chapter

List Chapter Events

GET
/chapter/{chapter_id}/event/
Chapter
Retrieves a list of event records for the given chapter.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/chapter//event/'
Response Response Example
200 - Example 1
{
    "count": 1,
    "next": null,
    "previous": null,
    "results": [
        {
            "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/"
        }
    ],
    "status_counter": {
        "Canceled": 10,
        "Completed": 80,
        "Draft": 18,
        "Published": 11,
        "Live": 1,
        "Pending": 0
    }
}

Request

Path Params
chapter_id
integer 
required
The ID of the chapter to retrieve events for.
Query Params
order_by
string 
optional
Sort the results by this value. Possible values id, title, start_date, end_date.
Prefix value with '-' to specify descending order. Default is start_date descending.
page_size
integer 
optional
The number of records to return per page. Default is 500. Maximum is 500.

Responses

🟢200OK
application/json
successful operation
Body
count
number 
optional
Example:
1
next
string  | null 
optional
Example:
null
previous
string  | null 
optional
Example:
null
results
array[object (EventSummary) {12}] 
optional
allows_cohosting
boolean 
optional
Example:
false
checkin_count
number 
optional
Example:
0
cohost_registration_url
string 
optional
Example:
https://instance.bevy.com/events/details/chapter-2024-presents/
end_date
string  | null 
optional
Example:
2024-01-09T17:59:22Z
id
integer 
optional
Example:
1234
start_date
string  | null 
optional
Example:
2024-01-09T17:59:22Z
status
string 
optional
Example:
Draft
title
string  | null 
optional
Example:
Chapter 2024
total_attendees
number 
optional
Example:
0
total_revenue
number  | null 
optional
Example:
0
total_tickets_sold
boolean 
optional
Example:
false
url
string 
optional
Example:
https://instance.bevy.com/events/details/chapter-2024-presents/
status_counter
object 
optional
Canceled
number 
optional
Example:
10
Completed
number 
optional
Example:
80
Draft
number 
optional
Example:
18
Published
number 
optional
Example:
11
Live
number 
optional
Example:
1
Pending
number 
optional
Example:
0
🟠400Bad Request
🟠403Forbidden
Previous
Get Chapter by ID
Next
List Chapter Members
Built with