POST api/hotel/agentsys/landmark/search/get

获取搜索路标

Request Information

URI Parameters

None.

Body Parameters

TC_HotelLandMarkRQContract
NameDescriptionTypeAdditional information
landmarkguid

路标guid

string

None.

authuser

用户身份信息

TC_UserContract

None.

Request Formats

application/json, text/json

Sample:
{
  "landmarkguid": "sample string 1",
  "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_HotelLandMarkRQContract'.

Response Information

Resource Description

获取搜索路标

ReturnResultOfListOfTC_HotelLandMarkRSContract
NameDescriptionTypeAdditional information
data

Collection of TC_HotelLandMarkRSContract

None.

code

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

integer

None.

message

提示消息

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": [
    {
      "landmarktypecode": "sample string 1",
      "landmarktype": "sample string 2",
      "landmarkid": "sample string 3",
      "landmarkname": "sample string 4",
      "latitude": 5.1,
      "longitude": 6.1,
      "hotelids": [
        "sample string 1",
        "sample string 2"
      ],
      "hotelcount": 7
    },
    {
      "landmarktypecode": "sample string 1",
      "landmarktype": "sample string 2",
      "landmarkid": "sample string 3",
      "landmarkname": "sample string 4",
      "latitude": 5.1,
      "longitude": 6.1,
      "hotelids": [
        "sample string 1",
        "sample string 2"
      ],
      "hotelcount": 7
    }
  ],
  "code": 1,
  "message": "sample string 2"
}