Skip to main content
GET
/
api
/
content
/
eventattendees
/
{id}
Get one EventAttendee
curl --request GET \
  --url https://spaces.nexudus.com/api/content/eventattendees/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "BusinessId": 123,
  "CalendarEventId": 123,
  "CalendarEventName": "<string>",
  "EventProductId": 123,
  "EventProductName": "<string>",
  "EventProductPrice": 123,
  "EventProductCurrencyCode": "<string>",
  "CoworkerId": 123,
  "CoworkerFullName": "<string>",
  "FullName": "<string>",
  "Email": "<string>",
  "PurchaseOrder": "<string>",
  "AttendeeCode": "<string>",
  "CheckedIn": true,
  "CheckedInDate": "<string>",
  "Invoiced": true,
  "DueDate": "<string>",
  "Billed": true,
  "CreatedOnLocal": "<string>",
  "CheckedInDateLocal": "<string>",
  "CoworkerInvoiceId": 123,
  "CoworkerInvoiceNumber": "<string>",
  "CoworkerInvoicePaid": true,
  "Reminded": true,
  "ZoomEventData": "<string>",
  "ZoomParticipantId": "<string>",
  "IsSent": true,
  "Id": 123,
  "UniqueId": "<string>",
  "CreatedOn": "<string>",
  "UpdatedOn": "<string>",
  "UpdatedBy": "<string>",
  "IsNew": true,
  "SystemId": "<string>"
}
An EventAttendee records a customer’s registration for a calendar event. Each record links a customer to an event and tracks attendance details such as check-in status and whether the attendee was invoiced.

Authentication

This endpoint requires OAuth2 authentication. Include a valid bearer token in the Authorization header. The authenticated user must be a full unrestricted administrator or have the EventAttendee-Read role.

Path Parameters

id
integer
required
The Id of the EventAttendee record to retrieve.

Code Examples

curl -X GET \
  "https://spaces.nexudus.com/api/content/eventattendees/87654321" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response

200

BusinessId
integer
ID of the business linked to this record.
CalendarEventId
integer
ID of the calendar event linked to this record.
CalendarEventName
string
Display name of the linked calendar event (read-only).
EventProductId
integer
ID of the event product linked to this record.
EventProductName
string
Display name of the linked event product (read-only).
EventProductPrice
number
The event product price value for this event attendee.
EventProductCurrencyCode
string
The event product currency code value for this event attendee.
CoworkerId
integer
ID of the coworker linked to this record.
CoworkerFullName
string
Display name of the linked coworker full (read-only).
FullName
string
The full name value for this event attendee.
Email
string
The email value for this event attendee.
PurchaseOrder
string
The purchase order value for this event attendee.
AttendeeCode
string
The attendee code value for this event attendee.
CheckedIn
boolean
Whether checked in is enabled.
CheckedInDate
string
Date/time value for checked in date.
Invoiced
boolean
Whether invoiced is enabled.
DueDate
string
Date/time value for due date.
Billed
boolean
Whether billed is enabled.
CreatedOnLocal
string
Date/time value for created on local.
CheckedInDateLocal
string
Date/time value for checked in date local.
CoworkerInvoiceId
integer
ID of the coworker invoice associated with this record.
CoworkerInvoiceNumber
string
The coworker invoice number value for this event attendee.
CoworkerInvoicePaid
boolean
Whether coworker invoice paid is enabled.
Reminded
boolean
Whether reminded is enabled.
ZoomEventData
string
The zoom event data value for this event attendee.
ZoomParticipantId
string
ID of the zoom participant associated with this record.
IsSent
boolean
Whether is sent is enabled.
Id
integer
Unique record identifier.
UniqueId
string
UUID of the record.
CreatedOn
string
Date and time the record was created (ISO 8601).
UpdatedOn
string
Date and time the record was last updated (ISO 8601).
UpdatedBy
string
Email of the user who last updated this record.
IsNew
boolean
Whether the record was recently created.
SystemId
string
External system identifier.
Example Response
{
  "BusinessId": 0,
  "CalendarEventId": 0,
  "CalendarEventName": null,
  "EventProductId": 0,
  "EventProductName": null,
  "EventProductPrice": null,
  "EventProductCurrencyCode": null,
  "CoworkerId": null,
  "CoworkerFullName": null,
  "FullName": "",
  "Email": "",
  "PurchaseOrder": null,
  "AttendeeCode": null,
  "CheckedIn": false,
  "CheckedInDate": null,
  "Invoiced": false,
  "DueDate": null,
  "Billed": false,
  "CreatedOnLocal": null,
  "CheckedInDateLocal": null,
  "CoworkerInvoiceId": null,
  "CoworkerInvoiceNumber": null,
  "CoworkerInvoicePaid": false,
  "Reminded": false,
  "ZoomEventData": null,
  "ZoomParticipantId": null,
  "IsSent": false,
  "Id": 87654321,
  "UpdatedOn": "2025-01-15T10:30:00Z",
  "CreatedOn": "2025-01-10T08:00:00Z",
  "UniqueId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "UpdatedBy": "admin@example.com",
  "IsNew": false,
  "SystemId": null,
  "ToStringText": "EventAttendee Example",
  "LocalizationDetails": null,
  "CustomFields": null
}