Show Participant

GET /v1/participants/{id}

Path parameters

  • id string Required

    Participant ID

Responses

  • 200 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
GET /v1/participants/{id}
curl \
 -X GET http://localhost:4000/v1/participants/uuidv4 \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": {
    "first_name": "Melanie",
    "id": "<uuid v4>",
    "last_name": "Muster"
  }
}