POST api/hotel/agentsys/placetype/get

获取包含在对应类型的酒店

Request Information

URI Parameters

None.

Body Parameters

TC_HotelPlaceTypeRQContract
NameDescriptionTypeAdditional information
placetype

string

None.

hotelids

Collection of string

None.

authuser

用户身份信息

TC_UserContract

None.

Request Formats

application/json, text/json

Sample:
{
  "placetype": "sample string 1",
  "hotelids": [
    "sample string 1",
    "sample string 2"
  ],
  "authuser": {
    "userid": "sample string 1",
    "password": "sample string 2"
  }
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'TC_HotelPlaceTypeRQContract'.

Response Information

Resource Description

获取包含在对应类型的酒店

ReturnResultOfListOfString
NameDescriptionTypeAdditional information
data

Collection of string

None.

code

状态码:100成功,其他自定义

integer

None.

message

提示消息

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": [
    "sample string 1",
    "sample string 2"
  ],
  "code": 1,
  "message": "sample string 2"
}