To view details for a single event, make a GET call to the GET https://api.cc.email/v3/events/{event_id} endpoint and specify the event_id as a path parameter.

Request Example

GET https://api.cc.email/v3/events/{event_id}

Endpoint Requirements

User privileges: campaign:read

Authorization scopes: campaign_data

<?php
$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://api.cc.email/v3/events/{event_id}',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'GET',
  CURLOPT_HTTPHEADER => array(
    'Authorization: Bearer {access_token}'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

curl --location 'https://api.cc.eail/v3/events/{event_id}' \
--header 'Authorization: Bearer {access_token}'
OkHttpClient client = new OkHttpClient().newBuilder()
        .build();
MediaType mediaType = MediaType.parse("text/plain");
RequestBody body = RequestBody.create(mediaType, "");
Request request = new Request.Builder()
        .url("https://api.cc.email/v3/events/{event_id}")
        .method("GET", body)
        .addHeader("Authorization", "Bearer {access_token}")
        .build();
Response response = client.newCall(request).execute();

Example Response

The response details vary based on the specific settings and type of the requested event.

For example, the following results are for a ticketed open-house event that is set to occur on a specific date, within a specific time range, and at a physical location.

{
 "create_time": "2025-03-27T18:41:56.164Z",
 "last_update_time": "2025-03-27T18:41:56.164Z",
 "event_id": "5c8179c5-f1b3-4e60-bc56-e900a19049c8",
 "default_track": {
   "track_id": "dcyhdw", 
   "campaign_activity_id": "a399c4ae-ac8f-4fcc-b861-d38109cc0bb1",
   "conf_email_campaign_activity_id": "572a0af4-d0b4-4d1b-bea4-6f3ab992c1ef",
   "registration_type": "TICKET",
   "reg_manually_closed_flag": false,
   "platform_fee_scope_type": "OWNER",
   "tickets_header": "TICKETS",
   "items_header": "ADD-ONS",
   "overall_ticket_capacity": -1,
   "restrict_to_single_ticket_flag": false
},
 "name": "Host Open House in Waltham, MA Created 2025/03/27, 2:41:46 PM",
 "title": "Exclusive Open House in Waltham, MA",
 "status": "DRAFT",
 "event_start": "2025-03-28T12:00:00Z",
 "event_end": "2025-03-28T15:00:00Z",
 "event_type": "OTHER",
 "currency_type": "USD",
 "description": "Join us for an exclusive open house in Waltham, MA. Explore the property, meet the team, and imagine your new home. This is a wonderful opportunity to envision possibilities within the space and connect with others who value community. Don't miss out on this chance to be part of something special—RSVP today!",
 "time_zone": "US/Eastern",
 "time_zone_abbreviation": "ET",
 "event_source_type": "CB",
 "display_map_on_lp_flag": false,
 "display_end_time_flag": true,
 "display_time_zone_flag": false,
 "display_contact_flag": false,
 "display_on_calendar_flag": false,
 "notify_owner_on_reg": false,
 "event_code": "d5z28j5",
 "registration_url": "https://lp.l1.constantcontactpages.com/ev/reg/d5z28j5",
 "event_calendar_url": "https://lp.l1.constantcontactpages.com/ev/calendar/001wZREXJ98vGM_rGt-fbtpGw==",
 "event_widget_url": "https://eventsfeed.l1.constantcontact.com/widget/myevents.js?eso=001wZREXJ98vGM_rGt-fbtpGw==",
 "eso": "001wZREXJ98vGM_rGt-fbtpGw=="
}

Learn more about event schema: Event schema

Try it!

Tags: events