Create Participant

POST /v1/participants
application/json

Body

New Participant Params

  • participant object Required

    A potential/future/current/past participant

    Hide participant attributes Show participant attributes object

Responses

  • 201 application/json

    Participant response

    Hide response attribute Show response attribute object
    • data object

      A potential/future/current/past participant

      Hide data attributes Show data attributes object
POST /v1/participants
curl \
 -X POST https://api.azav-pilot.de/v1/participants \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"participant":{"first_name":"Melanie","id":"\u003cuuid v4\u003e","last_name":"Muster"}}'
Request example
{
  "participant": {
    "first_name": "Melanie",
    "id": "<uuid v4>",
    "last_name": "Muster"
  }
}
Response examples (201)
{
  "data": {
    "first_name": "Melanie",
    "id": "<uuid v4>",
    "last_name": "Muster"
  }
}