POST api/Clinics/SaveClinicAddress
Request Information
URI Parameters
None.
Body Parameters
ClinicAddressModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ClinicKey | string |
None. |
|
| AreaId | integer |
None. |
|
| Longitude | string |
None. |
|
| Latitude | string |
None. |
|
| AddressEnglish | string |
None. |
|
| AddressArabic | string |
None. |
|
| FloorNumber | integer |
None. |
|
| LandmarkEnglish | string |
None. |
|
| LandmarkArabic | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ClinicKey": "sample string 1",
"AreaId": 1,
"Longitude": "sample string 2",
"Latitude": "sample string 3",
"AddressEnglish": "sample string 4",
"AddressArabic": "sample string 5",
"FloorNumber": 1,
"LandmarkEnglish": "sample string 6",
"LandmarkArabic": "sample string 7"
}
application/xml, text/xml
Sample:
<ClinicAddressModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VezeetaCrmApi.Models"> <AddressArabic>sample string 5</AddressArabic> <AddressEnglish>sample string 4</AddressEnglish> <AreaId>1</AreaId> <ClinicKey>sample string 1</ClinicKey> <FloorNumber>1</FloorNumber> <LandmarkArabic>sample string 7</LandmarkArabic> <LandmarkEnglish>sample string 6</LandmarkEnglish> <Latitude>sample string 3</Latitude> <Longitude>sample string 2</Longitude> </ClinicAddressModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |