Skip to main content
GET
/
getevents
List Events
curl --request GET \
  --url https://api.example.com/getevents
{
  "status": "success",
  "data": {
    "events": [
      {
        "id": 1,
        "title": "Annual General Meeting",
        "description": "Yearly review and elections",
        "start_time": "2025-06-15T14:00:00Z",
        "end_time": "2025-06-15T16:00:00Z",
        "timezone": "Africa/Lagos",
        "meeting_link": "https://meet.google.com/abc-defg-hij",
        "meeting_provider_type": "google_meet",
        "record_meeting": true,
        "chapter_id": 1
      }
    ],
    "pagination": {
      "total": 25,
      "offset": 0,
      "limit": 50
    }
  }
}

Query Parameters

chapter_id
integer
required
Chapter ID.
offset
integer
default:"0"
Pagination offset.
limit
integer
default:"50"
Maximum records.

Response

{
  "status": "success",
  "data": {
    "events": [
      {
        "id": 1,
        "title": "Annual General Meeting",
        "description": "Yearly review and elections",
        "start_time": "2025-06-15T14:00:00Z",
        "end_time": "2025-06-15T16:00:00Z",
        "timezone": "Africa/Lagos",
        "meeting_link": "https://meet.google.com/abc-defg-hij",
        "meeting_provider_type": "google_meet",
        "record_meeting": true,
        "chapter_id": 1
      }
    ],
    "pagination": {
      "total": 25,
      "offset": 0,
      "limit": 50
    }
  }
}