ℹ️Participant Details

This page describes how to obtain details of a participant.

In Groups API, there are two ways to obtain details of a participant:

Both methods require SESSION_ID and respective parameter when making requests.

By ATTENDANCE_CODE

Example Payload:

curl --location --request GET 'https://<DOMAIN>/xapi/session/<SESSION_ID>/attendee/<ATTENDANCE_CODE>' \
--header 'Authorization: Bearer <ACCESS_TOKEN>' \
--header 'Content-Type: application/json' \
--data ''

By EMAIL

Example Payload:

curl --location --request GET 'https://<DOMAIN>/xapi/session/<SESSION_ID>/attendee/<EMAIL>' \
--header 'Authorization: Bearer <ACCESS_TOKEN>' \
--header 'Content-Type: application/json' \
--data ''

Last updated

Was this helpful?