POST api/hotel/agentsys/query/triptypes

酒店对应的体验分数

Request Information

URI Parameters

None.

Body Parameters

TC_HotelTripTypesRQContract
NameDescriptionTypeAdditional information
hotelids

Collection of string

None.

authuser

用户身份信息

TC_UserContract

None.

Request Formats

application/json, text/json

Sample:
{
  "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_HotelTripTypesRQContract'.

Response Information

Resource Description

酒店对应的体验分数

ReturnResultOfListOfTC_HotelTripTypesRSContract
NameDescriptionTypeAdditional information
data

Collection of TC_HotelTripTypesRSContract

None.

code

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

integer

None.

message

提示消息

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": [
    {
      "hotelid": "sample string 1",
      "triptype": "sample string 2",
      "reviewcount": 3
    },
    {
      "hotelid": "sample string 1",
      "triptype": "sample string 2",
      "reviewcount": 3
    }
  ],
  "code": 1,
  "message": "sample string 2"
}