GET api/v1/SelfCheckin/GetSelfTerminalPayInfo?regOrderId={regOrderId}

通过登记单获取通联支付订单的信息

请求信息(Request)

URI 参数

名称描述类型备注
regOrderId

登记单

string

Required

Body 参数

None.

响应信息(Response)

资源描述

RequestResultOfSelfTerminalPayDTO
名称描述类型备注
Data

SelfTerminalPayDTO

None.

Status

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

integer

None.

Message

导致失败的相关消息

string

None.

Total

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

integer

None.

响应格式

application/json, text/json

Sample:
{
  "Data": {
    "ID": 1,
    "HotelId": 2,
    "RegOrderId": 1,
    "PmsRegOrderId": "sample string 3",
    "CardNumber": "sample string 4",
    "Mernu": "sample string 5",
    "Ter": "sample string 6",
    "PipelineNumber": "sample string 7",
    "Time": "sample string 8",
    "Amount": 9,
    "Date": "sample string 10",
    "ReferenceNumber": "sample string 11",
    "AuthorizationCode": "sample string 12",
    "PayType": 1,
    "PayTypeName": "sample string 13"
  },
  "Status": 1,
  "Message": "sample string 2",
  "Total": 3
}

application/xml, text/xml

Sample:
<RequestResultOfSelfTerminalPayDTO6NgmDdgv 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>
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/WLife.Application.DTOs">
    <d2p1:Amount>9</d2p1:Amount>
    <d2p1:AuthorizationCode>sample string 12</d2p1:AuthorizationCode>
    <d2p1:CardNumber>sample string 4</d2p1:CardNumber>
    <d2p1:Date>sample string 10</d2p1:Date>
    <d2p1:HotelId>2</d2p1:HotelId>
    <d2p1:ID>1</d2p1:ID>
    <d2p1:Mernu>sample string 5</d2p1:Mernu>
    <d2p1:PayType>Pay</d2p1:PayType>
    <d2p1:PayTypeName>sample string 13</d2p1:PayTypeName>
    <d2p1:PipelineNumber>sample string 7</d2p1:PipelineNumber>
    <d2p1:PmsRegOrderId>sample string 3</d2p1:PmsRegOrderId>
    <d2p1:ReferenceNumber>sample string 11</d2p1:ReferenceNumber>
    <d2p1:RegOrderId>1</d2p1:RegOrderId>
    <d2p1:Ter>sample string 6</d2p1:Ter>
    <d2p1:Time>sample string 8</d2p1:Time>
  </Data>
</RequestResultOfSelfTerminalPayDTO6NgmDdgv>