Skip to main content
GET
/
api
/
content
/
eventattendees
/
{id}
{
  "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>"
}

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
Business Id.
CalendarEventId
integer
Calendar Event Id.
CalendarEventName
string
Calendar Event Name.
EventProductId
integer
Event Product Id.
EventProductName
string
Event Product Name.
EventProductPrice
number
Event Product Price.
EventProductCurrencyCode
string
Event Product Currency Code.
CoworkerId
integer
Coworker Id.
CoworkerFullName
string
Coworker Full Name.
FullName
string
Full Name.
Email
string
Email.
PurchaseOrder
string
Purchase Order.
AttendeeCode
string
Attendee Code.
CheckedIn
boolean
Checked In.
CheckedInDate
string
Checked In Date.
Invoiced
boolean
Invoiced.
DueDate
string
Due Date.
Billed
boolean
Billed.
CreatedOnLocal
string
Created On Local.
CheckedInDateLocal
string
Checked In Date Local.
CoworkerInvoiceId
integer
Coworker Invoice Id.
CoworkerInvoiceNumber
string
Coworker Invoice Number.
CoworkerInvoicePaid
boolean
Coworker Invoice Paid.
Reminded
boolean
Reminded.
ZoomEventData
string
Zoom Event Data.
ZoomParticipantId
string
Zoom Participant Id.
IsSent
boolean
Is Sent.
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
}