POST api/Properties/SearchPartnerByCriteria
Request Information
URI Parameters
None.
Body Parameters
PartnerSearchModel| Name | Description | Type | Additional information |
|---|---|---|---|
| NationalityNumber | string |
None. |
|
| Username | string |
None. |
|
| PhoneCell | string |
None. |
|
| CellPhone | string |
None. |
|
| UserProfileID | integer |
None. |
|
| string |
None. |
Request Formats
application/json, text/json
Sample:
{
"NationalityNumber": "sample string 1",
"Username": "sample string 2",
"PhoneCell": "sample string 3",
"CellPhone": "sample string 4",
"UserProfileID": 1,
"Email": "sample string 5"
}
application/xml, text/xml
Sample:
<PartnerSearchModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel"> <CellPhone>sample string 4</CellPhone> <Email>sample string 5</Email> <NationalityNumber>sample string 1</NationalityNumber> <PhoneCell>sample string 3</PhoneCell> <UserProfileID>1</UserProfileID> <Username>sample string 2</Username> </PartnerSearchModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | ResultStatus |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 100,
"Message": "sample string 1",
"Data": {}
}
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Generics"> <Data /> <Message>sample string 1</Message> <Status>Success</Status> </Result>