POST api/Medical/GetNewResourceByProfessionTypeID
Request Information
URI Parameters
None.
Body Parameters
SearchNewResoureByProfessionTypeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNumber | integer |
None. |
|
| EntriePerPage | integer |
None. |
|
| UserProfileID | integer |
None. |
|
| ProfessionTypeID | integer |
None. |
|
| CountryID | integer |
None. |
|
| ProvinceID | integer |
None. |
|
| CityID | integer |
None. |
|
| TownID | integer |
None. |
|
| CountyID | integer |
None. |
|
| Age | integer |
None. |
|
| Experience | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"PageNumber": 1,
"EntriePerPage": 2,
"UserProfileID": 3,
"ProfessionTypeID": 4,
"CountryID": 5,
"ProvinceID": 1,
"CityID": 1,
"TownID": 1,
"CountyID": 1,
"Age": 1,
"Experience": 1.0
}
application/xml, text/xml
Sample:
<SearchNewResoureByProfessionTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model"> <Age>1</Age> <CityID>1</CityID> <CountryID>5</CountryID> <CountyID>1</CountyID> <EntriePerPage>2</EntriePerPage> <Experience>1</Experience> <PageNumber>1</PageNumber> <ProfessionTypeID>4</ProfessionTypeID> <ProvinceID>1</ProvinceID> <TownID>1</TownID> <UserProfileID>3</UserProfileID> </SearchNewResoureByProfessionTypeModel>
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>