GET api/v1/persons/gliderinstructors/listitems/{onlyClubRelatedInstuctors}
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| onlyClubRelatedInstuctors | boolean | Required | 
Body Parameters
None.
Response Information
Resource Description
Collection of PersonListItem| Name | Description | Type | Additional information | 
|---|---|---|---|
| PersonId | globally unique identifier | None. | |
| Firstname | string | None. | |
| Lastname | string | None. | |
| City | string | None. | 
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "PersonId": "22580cf0-6187-43db-946c-59edc4f13461",
    "Firstname": "sample string 2",
    "Lastname": "sample string 3",
    "City": "sample string 4"
  },
  {
    "PersonId": "22580cf0-6187-43db-946c-59edc4f13461",
    "Firstname": "sample string 2",
    "Lastname": "sample string 3",
    "City": "sample string 4"
  }
]
        text/html
            Sample:
        
[{"PersonId":"22580cf0-6187-43db-946c-59edc4f13461","Firstname":"sample string 2","Lastname":"sample string 3","City":"sample string 4"},{"PersonId":"22580cf0-6187-43db-946c-59edc4f13461","Firstname":"sample string 2","Lastname":"sample string 3","City":"sample string 4"}]
        application/xml, text/xml
            Sample:
<ArrayOfPersonListItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.Person">
  <PersonListItem>
    <City>sample string 4</City>
    <Firstname>sample string 2</Firstname>
    <Lastname>sample string 3</Lastname>
    <PersonId>22580cf0-6187-43db-946c-59edc4f13461</PersonId>
  </PersonListItem>
  <PersonListItem>
    <City>sample string 4</City>
    <Firstname>sample string 2</Firstname>
    <Lastname>sample string 3</Lastname>
    <PersonId>22580cf0-6187-43db-946c-59edc4f13461</PersonId>
  </PersonListItem>
</ArrayOfPersonListItem>