Participant
Details around the participant collection and detail endpoint
An example participant resource for the 2018 winter olympics can be seen below.
{
"code": "100110",
"givenName": "Bjorn-Tore",
"familyName": "Staurset",
"dob": "1988-05-10",
"gender": {
"code": "M",
"description": "Male"
},
"organisation": {
"code": "DEN",
"description": "Denmark"
}
}
The table below outlines the possible values exposed in the Participant resource.
Property | Value(s) | Description |
---|---|---|
code | IOC defined participant code | |
givenName | IOC defined given name | |
familyName | IOC defined family name | |
dob | YYYY-MM-DD | IOC defined date of birth |
gender | Gender | The associated gender |
organisation | Organisation | The associated organisation |
This is how you would query for a list of participants
curl --request GET \
--url https://olympics.api.pamedia.io/v3/games/OWG2018/participant
This is how you would query a participants details
curl --request GET \
--url https://olympics.api.pamedia.io/v3/games/OWG2018/participant/12345
Updated 4 months ago