curl --request PUT \
--url https://api.example.com/api/v1/participants/:id \
--header 'Content-Type: application/json' \
--data '
{
"first_name": "<string>",
"surname": "<string>",
"gender": "<string>",
"status": "<string>",
"super_group_id": "<string>",
"sub_group_id": "<string>",
"block_id": "<string>",
"room_id": "<string>"
}
'