> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get one EventAttendee

> Retrieve a single EventAttendee record by its Id.

## Authentication

<Note>
  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.
</Note>

## Path Parameters

<ParamField path="id" type="integer" required>
  The Id of the EventAttendee record to retrieve.
</ParamField>

## Code Examples

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET \
    "https://spaces.nexudus.com/api/content/eventattendees/87654321" \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://spaces.nexudus.com/api/content/eventattendees/87654321',
    {
      headers: {
        'Authorization': 'Bearer YOUR_TOKEN'
      }
    }
  );

  const record = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'https://spaces.nexudus.com/api/content/eventattendees/87654321',
      headers={
          'Authorization': 'Bearer YOUR_TOKEN'
      }
  )

  record = response.json()
  ```
</CodeGroup>

## Response

### 200

<ResponseField name="BusinessId" type="integer">
  Business Id.
</ResponseField>

<ResponseField name="CalendarEventId" type="integer">
  Calendar Event Id.
</ResponseField>

<ResponseField name="CalendarEventName" type="string">
  Calendar Event Name.
</ResponseField>

<ResponseField name="EventProductId" type="integer">
  Event Product Id.
</ResponseField>

<ResponseField name="EventProductName" type="string">
  Event Product Name.
</ResponseField>

<ResponseField name="EventProductPrice" type="number">
  Event Product Price.
</ResponseField>

<ResponseField name="EventProductCurrencyCode" type="string">
  Event Product Currency Code.
</ResponseField>

<ResponseField name="CoworkerId" type="integer">
  Coworker Id.
</ResponseField>

<ResponseField name="CoworkerFullName" type="string">
  Coworker Full Name.
</ResponseField>

<ResponseField name="FullName" type="string">
  Full Name.
</ResponseField>

<ResponseField name="Email" type="string">
  Email.
</ResponseField>

<ResponseField name="PurchaseOrder" type="string">
  Purchase Order.
</ResponseField>

<ResponseField name="AttendeeCode" type="string">
  Attendee Code.
</ResponseField>

<ResponseField name="CheckedIn" type="boolean">
  Checked In.
</ResponseField>

<ResponseField name="CheckedInDate" type="string">
  Checked In Date.
</ResponseField>

<ResponseField name="Invoiced" type="boolean">
  Invoiced.
</ResponseField>

<ResponseField name="DueDate" type="string">
  Due Date.
</ResponseField>

<ResponseField name="Billed" type="boolean">
  Billed.
</ResponseField>

<ResponseField name="CreatedOnLocal" type="string">
  Created On Local.
</ResponseField>

<ResponseField name="CheckedInDateLocal" type="string">
  Checked In Date Local.
</ResponseField>

<ResponseField name="CoworkerInvoiceId" type="integer">
  Coworker Invoice Id.
</ResponseField>

<ResponseField name="CoworkerInvoiceNumber" type="string">
  Coworker Invoice Number.
</ResponseField>

<ResponseField name="CoworkerInvoicePaid" type="boolean">
  Coworker Invoice Paid.
</ResponseField>

<ResponseField name="Reminded" type="boolean">
  Reminded.
</ResponseField>

<ResponseField name="ZoomEventData" type="string">
  Zoom Event Data.
</ResponseField>

<ResponseField name="ZoomParticipantId" type="string">
  Zoom Participant Id.
</ResponseField>

<ResponseField name="IsSent" type="boolean">
  Is Sent.
</ResponseField>

<ResponseField name="Id" type="integer">
  Unique record identifier.
</ResponseField>

<ResponseField name="UniqueId" type="string">
  UUID of the record.
</ResponseField>

<ResponseField name="CreatedOn" type="string">
  Date and time the record was created (ISO 8601).
</ResponseField>

<ResponseField name="UpdatedOn" type="string">
  Date and time the record was last updated (ISO 8601).
</ResponseField>

<ResponseField name="UpdatedBy" type="string">
  Email of the user who last updated this record.
</ResponseField>

<ResponseField name="IsNew" type="boolean">
  Whether the record was recently created.
</ResponseField>

<ResponseField name="SystemId" type="string">
  External system identifier.
</ResponseField>

```json Example Response theme={null}
{
  "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
}
```
