GET api/Doctors?srchparam={srchparam}&strname={strname}&city={city}&key={key}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| srchparam | string |
Required |
|
| strname | string |
Required |
|
| city | string |
Required |
|
| key | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Doctor| Name | Description | Type | Additional information |
|---|---|---|---|
| OWNER_OID | integer |
None. |
|
| FIRST_NAME | string |
None. |
|
| SURNAME | string |
None. |
|
| DOCTOR_NAME | string |
None. |
|
| MAIL_ADDRESS_0 | string |
None. |
|
| MAIL_ADDRESS_1 | string |
None. |
|
| MAIL_ADDRESS_2 | string |
None. |
|
| MAIL_CITY | string |
None. |
|
| MAIL_PROVINCE_CD | string |
None. |
|
| MAIL_POSTAL_CODE | string |
None. |
|
| MAIL_COUNTRY | string |
None. |
|
| PHONE | string |
None. |
|
| FAX | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"OWNER_OID": 1,
"FIRST_NAME": "sample string 2",
"SURNAME": "sample string 3",
"DOCTOR_NAME": "sample string 4",
"MAIL_ADDRESS_0": "sample string 5",
"MAIL_ADDRESS_1": "sample string 6",
"MAIL_ADDRESS_2": "sample string 7",
"MAIL_CITY": "sample string 8",
"MAIL_PROVINCE_CD": "sample string 9",
"MAIL_POSTAL_CODE": "sample string 10",
"MAIL_COUNTRY": "sample string 11",
"PHONE": "sample string 12",
"FAX": "sample string 13"
},
{
"OWNER_OID": 1,
"FIRST_NAME": "sample string 2",
"SURNAME": "sample string 3",
"DOCTOR_NAME": "sample string 4",
"MAIL_ADDRESS_0": "sample string 5",
"MAIL_ADDRESS_1": "sample string 6",
"MAIL_ADDRESS_2": "sample string 7",
"MAIL_CITY": "sample string 8",
"MAIL_PROVINCE_CD": "sample string 9",
"MAIL_POSTAL_CODE": "sample string 10",
"MAIL_COUNTRY": "sample string 11",
"PHONE": "sample string 12",
"FAX": "sample string 13"
}
]
application/xml, text/xml
Sample:
<ArrayOfDoctor xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MDSearch.Models">
<Doctor>
<DOCTOR_NAME>sample string 4</DOCTOR_NAME>
<FAX>sample string 13</FAX>
<FIRST_NAME>sample string 2</FIRST_NAME>
<MAIL_ADDRESS_0>sample string 5</MAIL_ADDRESS_0>
<MAIL_ADDRESS_1>sample string 6</MAIL_ADDRESS_1>
<MAIL_ADDRESS_2>sample string 7</MAIL_ADDRESS_2>
<MAIL_CITY>sample string 8</MAIL_CITY>
<MAIL_COUNTRY>sample string 11</MAIL_COUNTRY>
<MAIL_POSTAL_CODE>sample string 10</MAIL_POSTAL_CODE>
<MAIL_PROVINCE_CD>sample string 9</MAIL_PROVINCE_CD>
<OWNER_OID>1</OWNER_OID>
<PHONE>sample string 12</PHONE>
<SURNAME>sample string 3</SURNAME>
</Doctor>
<Doctor>
<DOCTOR_NAME>sample string 4</DOCTOR_NAME>
<FAX>sample string 13</FAX>
<FIRST_NAME>sample string 2</FIRST_NAME>
<MAIL_ADDRESS_0>sample string 5</MAIL_ADDRESS_0>
<MAIL_ADDRESS_1>sample string 6</MAIL_ADDRESS_1>
<MAIL_ADDRESS_2>sample string 7</MAIL_ADDRESS_2>
<MAIL_CITY>sample string 8</MAIL_CITY>
<MAIL_COUNTRY>sample string 11</MAIL_COUNTRY>
<MAIL_POSTAL_CODE>sample string 10</MAIL_POSTAL_CODE>
<MAIL_PROVINCE_CD>sample string 9</MAIL_PROVINCE_CD>
<OWNER_OID>1</OWNER_OID>
<PHONE>sample string 12</PHONE>
<SURNAME>sample string 3</SURNAME>
</Doctor>
</ArrayOfDoctor>