Create Participant
Body
New Participant Params
-
A potential/future/current/past participant
Additional properties are allowed.
POST
/v1/participants
curl \
-X POST http://localhost:4000/v1/participants \
-H "Content-Type: application/json" \
-d '{"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"
}
}