Bevy API GDG
  1. Event
Bevy API GDG
  • Attendee
    • Add Attendees
      POST
    • Get Attendee Search
      GET
    • Update Attendee
      PUT
    • Send Event Email
      PUT
    • Resend Event Email
      POST
    • Add Attendees New
      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 Chapter Member by ID
    • List Chapter Members Copy
    • Search Member
    • 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
    • Get Event by ID
      GET
    • List events
      GET
    • List event types
      GET
    • Get Event Type by ID
      GET
    • List Event Attendees
      GET
    • List event tags
      GET
  • 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. Event

Get Event Type by ID

GET
/event_type/{event_type_id}/
Retrieves event type information.

Request

Path Params

Responses

🟢200OK
application/json
successful operation
Body

🟠403Forbidden
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/event_type//'
Response Response Example
200 - Example 1
{
    "allow_companies": false,
    "allow_facilitators": false,
    "allow_hosts": false,
    "allow_judges": false,
    "allow_mentors": false,
    "allow_moderators": false,
    "allow_multiday_events": false,
    "allow_new_agenda": false,
    "allow_panelists": false,
    "allow_recurring": false,
    "allow_registration_as_a_guest": false,
    "allow_speakers": false,
    "allow_tags": false,
    "banner": {
        "url": "https://res.cloudinary.com/startup-grind/image/upload/.../image.png",
        "path": "image.png",
        "thumbnail_width": 720,
        "thumbnail_height": 540,
        "thumbnail_format": "auto",
        "thumbnail_url": "https://res.cloudinary.com/startup-grind/image/upload/.../image.png"
    },
    "banner_crop_vertical": 0,
    "chapters": [
        {
            "chapter_location": "Egypt",
            "id": 30,
            "title": "University of Science"
        }
    ],
    "companies_max": 0,
    "companies_min": 0,
    "default_event_banner_image": "https://res.cloudinary.com/startup-grind/image/upload/c_fill,dpr_2.0,f_auto,g_center,q_auto:good/v1/gcs/platform-data-support/contentbuilder/57c.pic2_olPYQoS.png",
    "default_event_thumbnail_image": "https://res.cloudinary.com/startup-grind/image/upload/c_fill,dpr_2.0,f_auto,g_center,q_auto:good/v1/gcs/platform-data-support/contentbuilder/57c.pic2_olPYQoS.png",
    "deleted_date": "2024-01-09T17:59:22Z",
    "description": "lorem ipsum",
    "facilitators_max": 0,
    "facilitators_min": 0,
    "hosts_max": 0,
    "hosts_min": 0,
    "id": 1234,
    "judges_max": 0,
    "judges_min": 0,
    "logo": {
        "url": "https://res.cloudinary.com/startup-grind/image/upload/.../image.png",
        "path": "image.png",
        "thumbnail_width": 720,
        "thumbnail_height": 540,
        "thumbnail_format": "auto",
        "thumbnail_url": "https://res.cloudinary.com/startup-grind/image/upload/.../image.png"
    },
    "mentors_max": 0,
    "mentors_min": 0,
    "moderators_max": 0,
    "moderators_min": 0,
    "order": 0,
    "organization": 1234,
    "panelists_max": 0,
    "panelists_min": 0,
    "require_companies": false,
    "require_facilitators": false,
    "require_hosts": false,
    "require_judges": false,
    "require_mentors": false,
    "require_moderators": false,
    "require_panelists": false,
    "require_speakers": false,
    "require_tags": false,
    "rsvp_only": false,
    "slug": "my-event-type",
    "speakers_max": 0,
    "speakers_min": 0,
    "sponsor_tiers": [
        {
            "id": 1234,
            "order": 0,
            "slug": "platinum-sponsor",
            "title": "Platinum Sponsor"
        }
    ],
    "tags_max": 0,
    "tags_min": 0,
    "title": "My event type",
    "use_external_ticketing": false,
    "virtual_event_only": false,
    "virtual_event_url_required": true
}
Modified at 2025-04-13 12:07:25
Previous
List event types
Next
List Event Attendees
Built with