Create Participant
Body
New Participant Params
-
participant
object Required A potential/future/current/past participant
Additional properties are allowed.
POST
/v1/participants
curl \
--request POST https://api.azav-pilot.de/v1/participants \
--header "Content-Type: application/json" \
--data '{"participant":{"id":"\u003cuuid v4\u003e","last_name":"Muster","first_name":"Melanie"}}'
Request example
{
"participant": {
"id": "<uuid v4>",
"last_name": "Muster",
"first_name": "Melanie"
}
}
Response examples (201)
{
"data": {
"id": "<uuid v4>",
"last_name": "Muster",
"first_name": "Melanie"
}
}