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

# Attendees

> Start building awesome documentation in under 5 minutes

## Overview

This section provides a more in-depth look at an individual event. This is in my opinion is most insightful tool available.

This is what mine looks like:

<img src="https://mintcdn.com/lumalytics/Yzep4MJpigb-02BZ/images/attendees/i.png?fit=max&auto=format&n=Yzep4MJpigb-02BZ&q=85&s=c78b278b110d87ab55e6310ad0c204d8" width="3420" height="1890" data-path="images/attendees/i.png" />

### 1. Header Bar

This provides basic info on the attendees of you events:

<Tip>You can sort users via the headers</Tip>

<img src="https://mintcdn.com/lumalytics/Yzep4MJpigb-02BZ/images/attendees/i1.png?fit=max&auto=format&n=Yzep4MJpigb-02BZ&q=85&s=a4be22f6480877c022fc8d7a6f58778b" width="3420" height="1890" data-path="images/attendees/i1.png" />

### 2. Additional User Info

By clicking onto the user, you will be able to view additional info on the user.

<Tip>Clicking on name and email of user will copy it to clipboard</Tip>

<img src="https://mintcdn.com/lumalytics/Yzep4MJpigb-02BZ/images/attendees/i2.png?fit=max&auto=format&n=Yzep4MJpigb-02BZ&q=85&s=c814d1965e6a7c7a3c6810a83dabb62e" width="3420" height="1890" data-path="images/attendees/i2.png" />

One of the coolest things that Lumalytics is capable is storing all additional info a user fills out when they RSVP.

#### How custom data is processed and stored.

To provide context, there are 23 default fields available in Luma.

```
['name', 'email', 'userid',
 'eventid', 'checked_in_at', 'survey_response_feedback',
 'survey_response_rating', 'ticket_type_id', 'ticket_name',
 'amount', 'api_id', 'currency',
 'last_name', 'amount_tax', 'created_at',
 'first_name', 'coupon_code', 'eth_address',
 'phone_number', 'custom_source', 'solana_address',
 'amount_discount', 'approval_status']
```

However if you have create another field in you Luma event, they will be stored here as well. (Ex. What's your major? What's your GitHub acc etc.)

What we did was see if the additional fields were one of the 23. If they were not, they would be put in a jsonb object and
appended the user object. Now we have a clean way of accessing all additional information about a user that they volunteered! (Something you can't do on Luma)
