✒ī¸Updating Participants

This step shows how to update participants in a Perculus session.

There are two ways to update participant details for a session:

With ATTENDANCE_CODE

Available parameters:

Parameters
Type
Description

name

string

Name of the participant

surname

string

Surname of the participant

email

string

Email of the participant

role

string

Role of the user(see for possible values)

mobile

string

Mobile phone of the participant

Example Payload:

curl --location --request PUT 'https://<DOMAIN>/xapi/session/<SESSION_ID>/attendee/<ATTENDANCE_CODE>' \
--header 'Authorization: Bearer <ACCESS_TOKEN>' \
--header 'Content-Type: application/json' \
--data '{
    "name": "test",
    "surname": "surname"
    "role": "u"
}'

With EMAIL

Available parameters:

Parameters
Type
Description

name

string

Name of the participant

surname

string

Surname of the participant

email

string

Email of the participant

role

string

Role of the user(see for possible values)

mobile

string

Mobile phone of the participant

Example payload:

curl --location --request PUT 'https://<DOMAIN>/xapi/session/<SESSION_ID>/attendee/<EMAIL>' \
--header 'Authorization: Bearer <ACCESS_TOKEN>' \
--header 'Content-Type: application/json' \
--data '{
    "name": "test",
    "surname": "surname"
    "role": "u"
}'

Last updated

Was this helpful?