RingCentral Events · Example Payload

List Events

Retrieve all events for a given organization, paginated.

EventsVirtual EventsHybrid EventsWebinarsEvent ManagementRegistrationSessionsNetworking

List Events is an example object payload from RingCentral Events, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summarydescriptionrequestresponse

Example Payload

Raw ↑
{
  "summary": "List Events for an Organization",
  "description": "Retrieve all events for a given organization, paginated.",
  "request": {
    "method": "GET",
    "url": "https://api.events.ringcentral.com/v1/organizations/{organizationId}/events",
    "headers": {
      "Authorization": "Bearer {access_token}",
      "Accept": "application/json"
    },
    "parameters": {
      "organizationId": "org_abc123"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "data": [
        {
          "id": "evt_001",
          "name": "Annual Tech Summit 2024",
          "slug": "annual-tech-summit-2024",
          "description": "Join us for the biggest virtual tech conference of the year.",
          "start_at": "2024-09-15T09:00:00Z",
          "end_at": "2024-09-15T17:00:00Z",
          "organization_id": "org_abc123",
          "status": "live",
          "timezone": "America/New_York",
          "language": "en",
          "created_at": "2024-07-01T12:00:00Z",
          "updated_at": "2024-08-01T08:30:00Z"
        },
        {
          "id": "evt_002",
          "name": "Product Launch Webinar",
          "slug": "product-launch-webinar-q3",
          "description": "Exclusive webinar announcing our new product line.",
          "start_at": "2024-10-01T14:00:00Z",
          "end_at": "2024-10-01T16:00:00Z",
          "organization_id": "org_abc123",
          "status": "draft",
          "timezone": "America/Los_Angeles",
          "language": "en",
          "created_at": "2024-08-15T10:00:00Z",
          "updated_at": "2024-08-15T10:00:00Z"
        }
      ],
      "pagination": {
        "total": 2,
        "page": 1,
        "per_page": 20,
        "total_pages": 1
      }
    }
  }
}