POST api/v1/persons/page/{pageStart}/{pageSize}
Gets the person overviews.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageStart | integer |
Default value is 1 |
|
| pageSize | integer |
Default value is 100 |
Body Parameters
PageableSearchFilterOfPersonOverviewSearchFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| Sorting | Dictionary of string [key] and string [value] |
None. |
|
| SearchFilter | PersonOverviewSearchFilter |
None. |
Request Formats
application/json, text/json
Sample:
{
"Sorting": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
},
"SearchFilter": {
"Firstname": "sample string 1",
"Lastname": "sample string 2",
"AddressLine": "sample string 3",
"ZipCode": "sample string 4",
"City": "sample string 5",
"CountryName": "sample string 6",
"PrivateEmail": "sample string 7",
"MobilePhoneNumber": "sample string 8",
"MemberStateName": "sample string 9",
"HasGliderInstructorLicence": true,
"HasGliderPilotLicence": true,
"HasGliderTraineeLicence": true,
"HasMotorPilotLicence": true,
"HasTMGLicence": true,
"HasTowPilotLicence": true,
"HasGliderPassengerLicence": true,
"HasWinchOperatorLicence": true,
"HasMotorInstructorLicence": true,
"LicenceNumber": "sample string 10",
"OnlyClubRelatedPersons": true
}
}
text/html
Sample:
{"Sorting":{"sample string 1":"sample string 2","sample string 3":"sample string 4"},"SearchFilter":{"Firstname":"sample string 1","Lastname":"sample string 2","AddressLine":"sample string 3","ZipCode":"sample string 4","City":"sample string 5","CountryName":"sample string 6","PrivateEmail":"sample string 7","MobilePhoneNumber":"sample string 8","MemberStateName":"sample string 9","HasGliderInstructorLicence":true,"HasGliderPilotLicence":true,"HasGliderTraineeLicence":true,"HasMotorPilotLicence":true,"HasTMGLicence":true,"HasTowPilotLicence":true,"HasGliderPassengerLicence":true,"HasWinchOperatorLicence":true,"HasMotorInstructorLicence":true,"LicenceNumber":"sample string 10","OnlyClubRelatedPersons":true}}
application/xml, text/xml
Sample:
<PageableSearchFilterOfPersonOverviewSearchFilterwOpdU39B xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">
<SearchFilter xmlns:d2p1="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.Person">
<d2p1:AddressLine>sample string 3</d2p1:AddressLine>
<d2p1:City>sample string 5</d2p1:City>
<d2p1:CountryName>sample string 6</d2p1:CountryName>
<d2p1:Firstname>sample string 1</d2p1:Firstname>
<d2p1:HasGliderInstructorLicence>true</d2p1:HasGliderInstructorLicence>
<d2p1:HasGliderPassengerLicence>true</d2p1:HasGliderPassengerLicence>
<d2p1:HasGliderPilotLicence>true</d2p1:HasGliderPilotLicence>
<d2p1:HasGliderTraineeLicence>true</d2p1:HasGliderTraineeLicence>
<d2p1:HasMotorInstructorLicence>true</d2p1:HasMotorInstructorLicence>
<d2p1:HasMotorPilotLicence>true</d2p1:HasMotorPilotLicence>
<d2p1:HasTMGLicence>true</d2p1:HasTMGLicence>
<d2p1:HasTowPilotLicence>true</d2p1:HasTowPilotLicence>
<d2p1:HasWinchOperatorLicence>true</d2p1:HasWinchOperatorLicence>
<d2p1:Lastname>sample string 2</d2p1:Lastname>
<d2p1:LicenceNumber>sample string 10</d2p1:LicenceNumber>
<d2p1:MemberStateName>sample string 9</d2p1:MemberStateName>
<d2p1:MobilePhoneNumber>sample string 8</d2p1:MobilePhoneNumber>
<d2p1:OnlyClubRelatedPersons>true</d2p1:OnlyClubRelatedPersons>
<d2p1:PrivateEmail>sample string 7</d2p1:PrivateEmail>
<d2p1:ZipCode>sample string 4</d2p1:ZipCode>
</SearchFilter>
<Sorting xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 1</d2p1:Key>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:KeyValueOfstringstring>
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 3</d2p1:Key>
<d2p1:Value>sample string 4</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</Sorting>
</PageableSearchFilterOfPersonOverviewSearchFilterwOpdU39B>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
PagedListOfPersonOverview| Name | Description | Type | Additional information |
|---|---|---|---|
| Items | Collection of PersonOverview |
None. |
|
| PageStart | integer |
None. |
|
| PageSize | integer |
None. |
|
| TotalRows | integer |
None. |
Response Formats
application/json, text/json, text/html
Sample:
Sample not available.