POST api/applicant/hotelApplication/SaveHotelEstablishmentImagesSection
Request Information
URI Parameters
None.
Body Parameters
HotelEstablishmentImageSubmitDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationID | string |
Required |
|
| SectionID | integer |
Required |
|
| IsCompleted | boolean |
None. |
|
| UserID | string |
Required |
|
| ActionTakenBy | string |
Required |
|
| IPAddress | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"ApplicationID": "sample string 1",
"SectionID": 2,
"IsCompleted": true,
"UserID": "sample string 4",
"ActionTakenBy": "sample string 5",
"IPAddress": "sample string 6"
}
application/xml, text/xml
Sample:
<HotelEstablishmentImageSubmitDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tourism.Entities.CustomHotelCategoryModels"> <ActionTakenBy>sample string 5</ActionTakenBy> <ApplicationID>sample string 1</ApplicationID> <IPAddress>sample string 6</IPAddress> <IsCompleted>true</IsCompleted> <SectionID>2</SectionID> <UserID>sample string 4</UserID> </HotelEstablishmentImageSubmitDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiResponseOfString| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Data | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"Data": "sample string 3"
}
application/xml, text/xml
Sample:
<ApiResponseOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tourism.Entities.Models"> <Data>sample string 3</Data> <Message>sample string 2</Message> <Success>true</Success> </ApiResponseOfstring>