POST api/Medical/GetLegalEntityList
Request Information
URI Parameters
None.
Body Parameters
MED_LegalEntityListFetchModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ProfessionCode | string |
None. |
|
| MedicalPartnerDetailID | integer |
None. |
|
| CountryID | integer |
None. |
|
| ProvinceID | integer |
None. |
|
| CityID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProfessionCode": "sample string 1",
"MedicalPartnerDetailID": 1,
"CountryID": 1,
"ProvinceID": 1,
"CityID": 1
}
application/xml, text/xml
Sample:
<MED_LegalEntityListFetchModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model"> <CityID>1</CityID> <CountryID>1</CountryID> <MedicalPartnerDetailID>1</MedicalPartnerDetailID> <ProfessionCode>sample string 1</ProfessionCode> <ProvinceID>1</ProvinceID> </MED_LegalEntityListFetchModel>
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>