GET exportservice/education/events/{eventId}/participants
Returns a list of participants from an event
Request Information
Request URL
https://api.idrottonline.se/exportservice/education/events/{eventId}/participantsURI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
eventId |
The id of the event |
integer |
Required |
x-svenskidrott-api-version |
The requested API version |
string |
Default value is 1.0 |
api-version |
The requested API version |
string |
Default value is 1.0 |
Body Parameters
None.
Response Information
Resource Description
A list of participants
Collection of ExportService.DataContracts.Education.ParticipantName | Description | Type | Additional information |
---|---|---|---|
PersonId |
The IAS id of the person. |
integer |
None. |
IsSupervisor |
If set to true, the person is a leader at the event. |
boolean |
None. |
FirstName |
The participant's firstname |
string |
None. |
LastName |
The participant's lastname |
string |
None. |
IsApproved |
If set to true, the person is approved for the event. |
boolean |
None. |
HasPassed |
If set to true, the person has passed the event. |
boolean |
None. |
RegistrationTime |
The time when the participant was registered at the event. |
date |
None. |
Response Formats
application/json, text/json
[ { "PersonId": 456234, "IsSupervisor": true, "FirstName": "Anders", "LastName": "Persson", "IsApproved": true, "HasPassed": false, "RegistrationTime": "2016-01-02T00:00:00" }, { "PersonId": 836125, "IsSupervisor": false, "FirstName": "Lena", "LastName": "Andersson", "IsApproved": true, "HasPassed": false, "RegistrationTime": "2016-01-04T00:00:00" } ]