POST api/v1/SelfCheckin/PmsRegOrderOverStayByOTAOrder

请求信息(Request)

URI 参数

None.

Body 参数

OTAContinueLiveModel
名称描述类型备注
wlifeHotelId

integer

None.

PmsRegOrderId

globally unique identifier

None.

PmsReserveOrderId

globally unique identifier

None.

请求格式

application/json, text/json

Sample:
{
  "wlifeHotelId": 1,
  "PmsRegOrderId": "9f9cc1eb-5b8d-48ce-8c29-e890a95f4062",
  "PmsReserveOrderId": "406b21a9-3571-4ae6-8f59-4ae554885de9"
}

application/xml, text/xml

Sample:
<OTAContinueLiveModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WLife.Application.DTOs">
  <PmsRegOrderId>9f9cc1eb-5b8d-48ce-8c29-e890a95f4062</PmsRegOrderId>
  <PmsReserveOrderId>406b21a9-3571-4ae6-8f59-4ae554885de9</PmsReserveOrderId>
  <wlifeHotelId>1</wlifeHotelId>
</OTAContinueLiveModel>

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 'OTAContinueLiveModel'.

响应信息(Response)

资源描述

RequestResult
名称描述类型备注
Status

状态(0:成功,1:失败)

integer

None.

Message

导致失败的相关消息

string

None.

Total

集合总数,用于分页时使用

integer

None.

响应格式

application/json, text/json

Sample:
{
  "Status": 1,
  "Message": "sample string 2",
  "Total": 3
}

application/xml, text/xml

Sample:
<RequestResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WLife.Application">
  <Message>sample string 2</Message>
  <Status>1</Status>
  <Total>3</Total>
</RequestResult>