v1

latestSwagger 2.0Private2026-08-04128286690.5 KB
Events

Get registration details for an event.

Use the event_id, registration_id, and track_id path parameters to get registration details.

get/events/{event_id}/tracks/{track_id}/registrations/{registration_id}

Path parameters

event_idstring required

The ID that uniquely identifies the event.

track_idstring required

The track key that uniquely identifies the event track.

registration_idstring required

The ID that uniquely identifies the registration.

Response

Request Successful

registration_idstring

The unique ID used to identify an event registration.

contact_idstring

The unique ID used to identify a contact.

checkedIn_ticketsinteger

The total number of tickets assigned to a given <code>registration_id</code>.

checkin_statusstring

Provides the status of eligible checkin tickets.

eligible_checkin_ticketsinteger

The total number of tickets eligible for checkin.

registration_datestring date-time

The event registration date, in ISO format.

registration_statusstring

Provides the current registration status; <code>REGISTERED</code>, <code>PENDING</code>, <code>CANCELED</code>, <code>EXPIRED</code>, <code>IN_PROGRESS</code>, <code>FAILED</code>.

display_physical_ticketsboolean

Determines if the physical tickets should display or not display.

Example response

{
  "registration_id": "4g1ceb43-f858-432e-b287-30a6d20d1250",
  "contact_id": "84afe95a-5866-11ec-8019-fa163e56c9b0",
  "checkin_status": "NOT_CHECKED_IN",
  "eligible_checkin_tickets": 1,
  "registration_date": "2025-11-20T16:13:02.072Z",
  "registration_status": "REGISTERED",
  "display_physical_tickets": true,
  "contact": [
    {
      "display_order": 1,
      "field_label": "Email Address",
      "field_name": "CONTACT_EMAIL_ADDRESS",
      "field_type": "TEXT",
      "label_key": "registration.field.label.contact_email_address",
      "field_value": "john.doe@example.com",
      "choices": [
        "Option 1",
        "Option 2",
        "Option 3"
      ]
    }
  ],
  "tickets": [
    {
      "checked_in_time": "2025-11-20T16:13:02.072Z",
      "order_ticket_key": "a1b2c3",
      "price": 25,
      "ticket_name": "General Admission",
      "fields": [
        {
          "display_order": 1,
          "field_label": "Email Address",
          "field_name": "CONTACT_EMAIL_ADDRESS",
          "field_type": "TEXT",
          "label_key": "registration.field.label.contact_email_address",
          "field_value": "john.doe@example.com",
          "choices": [
            "Option 1",
            "Option 2",
            "Option 3"
          ]
        }
      ]
    }
  ],
  "order_summary": {
    "details": [
      {
        "amount": "$25.00",
        "amount_unformatted": 25,
        "line_item_type": "TICKET",
        "name": "General Admission"
      }
    ],
    "number": "ZWbsLNGrHT",
    "payment_method": "STRIPE",
    "payment_status": "PENDING",
    "payment_time": "2025-08-29T14:29:57.712Z",
    "payment_transaction_id": "0bbfdf32-0609-4467-ad19-514130f5beaf",
    "tickets_link": "https://lp.constantcontactpages.com/ev/reg/holly/registrations/fg84378c-a92e-41c4-87c2-0383986baaf9/tickets",
    "tickets_text": "Your tickets for access to the Holiday Festival of Lights.",
    "title": "Holiday Festival of Lights"
  }
}