Get event detail by ID

GET /events/{ID}

Path parameters

  • ID integer Required

    Resource ID

Responses

  • 200 application/json

    Event detail

    Hide response attributes Show response attributes object
    • id integer
    • name string
    • status string

      Values are scheduled or unplanned.

    • date string(date-time)
    • happened boolean
    • live_stream integer
    • has_live_stream boolean
    • replacement boolean
    • end string(date-time)
    • duration integer
    • cancellation_limit string(date-time)
    • can_cancel boolean
    • has_video boolean
    • has_files boolean
    • places object
    • courses object
    • trainers object
    • additional_trainers array[object]
      Hide additional_trainers attributes Show additional_trainers attributes object
      • role string
      • full_name string
GET /events/{ID}
curl \
 --request GET 'https://api.zooza.app/v1/events/{ID}'
Response examples (200)
{
  "id": 42,
  "name": "string",
  "status": "scheduled",
  "date": "2025-05-04T09:42:00Z",
  "happened": true,
  "live_stream": 42,
  "has_live_stream": true,
  "replacement": true,
  "end": "2025-05-04T09:42:00Z",
  "duration": 42,
  "cancellation_limit": "2025-05-04T09:42:00Z",
  "can_cancel": true,
  "has_video": true,
  "has_files": true,
  "places": {},
  "courses": {},
  "trainers": {},
  "additional_trainers": [
    {
      "role": "string",
      "full_name": "string"
    }
  ]
}