Searching Attendees

This step shows how to filter participants via GroupsAPI

If you like to see all attendees belonging to a session, you can achieve this by not sending any parameters to the request.

Available parameters:

Parameter
Type
Description

user_id

string

GUID of the user

attendance_code

string

Attendance code of the participant

name

string

Name of the participant

surname

string

Surname of the participant

email

string

Email of the participant

role

string

Role of the participant(see for possible values)

mobile

string

Mobile of the participant

page_size

integer

Page size

page_number

integer

Page number

Example request:

curl -L -X POST 'https://<DOMAIN>/xapi/v2/session/:SESSION_GUID/attendee/search' \
-H 'Content-Type: application/json' \
-d '{
    "name": "John"
}'

Example response:

    {
        "session_id": "994A39B6-DB42-4368-902A-2F9C01EE7B3F",
        "user_id": "",
        "user_guid": null,
        "attendee_id": "503738",
        "attendance_code": "27A9E30B-48C3-4933-9E15-6752D686AB51",
        "name": "John",
        "surname": "Doe",
        "email": "[email protected]",
        "role": "e",
        "mobile": null,
        "creation_date": "2024-10-18T21:39:39.000233+03:00",
        "updating_date": "2024-10-18T21:39:39.000233+03:00",
        "operation": null
    }

Last updated

Was this helpful?