Participants
Endpoints for working with the participants of a user.
Get participants
GET /api/internal/v1/:partner_code/participants
Paginate all the participants of the currently logged-in user with the possiblitiy to search by first name, last name and email.
Path Parameters
The partner code of the partner.
The number of the displayed page. Default is 1.
Search participants by first name, last name or email.
Get participant
GET /api/internal/v1/:partner_code/participants/:participant_id
Get a participant by its id.
Path Parameters
The partner code of the partner.
The id of the participant.
Create participant
POST /api/internal/v1/:partner_code/participants
Create a new participant.
Path Parameters
The partner code of the partner.
The first name of the participant.
The last name of the participant.
The gender of the participant. Allowed values: 0,1,2
The title of the participant.
The email of the participant.
The birthdate of the participant. Format: YYYY-MM-DD
Update participant
PUT /api/internal/v1/:partner_code/participants/:participant_id
Update a participant by its id.
Path Parameters
The partner code of the partner.
The id of the participant.
The first name of the participant.
The last name of the participant.
The gender of the participant. Allowed values: 0,1,2
The title of the participant.
The email of the participant.
The birthdate of the participant.
Delete participant
DELETE /api/internal/v1/:partner_code/participants/:participant_id
Delete a participant by its id.
Path Parameters
The partner code of the partner.
The id of the participant.