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

Get Session Video IDs

GET
/boe/archive/
Bevy Virtual
This endpoint allows you to access all manually recorded Session IDs (Sessions, Backstage, live Booths, and Networking Tables). This endpoint allows you to access all Manually recorded Session IDs. Use these IDs to fetch the Video URLs by using the Session Video URL's API call.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/boe/archive/?event'
Response Response Example
200 - Example 1
{
    "count": 1,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": "8304e548-ba76-4785-b9e4",
            "created_date": "2024-01-09T17:59:22Z",
            "status": "uploaded",
            "duration": 24,
            "size": 666368217,
            "live_session_uuid": "00eaf4f4-3c12-4892-bb3a-ee347308b132"
        }
    ]
}

Request

Query Params
event
integer 
required
The ID of the event Found in the URL path of an event in the bevy Dashboard

Responses

🟢200OK
application/json
successful operation
Body
count
number 
required
Example:
1
next
string  | null 
required
Example:
null
previous
string  | null 
required
Example:
null
results
array [object {6}] 
required
id
string 
required
Example:
8304e548-ba76-4785-b9e4
created_date
string 
required
Example:
2024-01-09T17:59:22Z
status
string 
required
Example:
uploaded
duration
number 
required
Duration of the video in seconds
Example:
24
size
number 
required
Size of the video in bytes
Example:
666368217
live_session_uuid
string 
required
Example:
00eaf4f4-3c12-4892-bb3a-ee347308b132
🟠400Bad Request
🔴500Server Error
Previous
Get Main Stage Video
Next
Get Session Video URLs
Built with