Skip to main content
GET
/
v1
/
events
/
{event_id}
/
attendees
Fetch Event Attendees
curl --request GET \
  --url https://dev.api.mufi.app/v1/events/{event_id}/attendees \
  --header 'Authorization: Bearer <token>'
{
  "event": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "reference_id": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "name": "<string>",
    "description": "<string>",
    "start_date": 123,
    "end_date": 123,
    "project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  },
  "attendees": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "event_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "registered_at": 123,
      "checked_in_at": 123,
      "user": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "firstName": "<string>",
        "lastName": "<string>",
        "email": "jsmith@example.com",
        "referenceId": "<string>",
        "isActivated": true,
        "activatedOn": "2023-11-07T05:31:56Z"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

A JWT Access Token obtained from Google Cloud.

Response

Returns a list of users that have registered to attend the event.

event
object
required
attendees
object[]
required