GET api/v{version}/event/{id}/attendees
Hämtar deltagare för det angivna evenemanget.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Evenemangs Id |
globally unique identifier |
Required |
| version |
The requested API version |
string |
Required Default value is 2.0 |
Body Parameters
None.
Response Information
Resource Description
Collection of AttendeeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Fornamn | string |
None. |
|
| Efternamn | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Fornamn": "sample string 2",
"Efternamn": "sample string 3"
},
{
"Id": 1,
"Fornamn": "sample string 2",
"Efternamn": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfAttendeeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Sedab.Api.Bll.Models">
<AttendeeModel>
<Efternamn>sample string 3</Efternamn>
<Fornamn>sample string 2</Fornamn>
<Id>1</Id>
</AttendeeModel>
<AttendeeModel>
<Efternamn>sample string 3</Efternamn>
<Fornamn>sample string 2</Fornamn>
<Id>1</Id>
</AttendeeModel>
</ArrayOfAttendeeModel>