GET api/Order/CheckIdentificationNumber/Singel?productid={productid}&idCodeList={idCodeList}

核查订单中某种门票类型的某个身份证号码是否可用预订

请求信息

URI参数

NameDescriptionTypeAdditional information
productid

门票类型

string

Required

idCodeList

证件号码

string

Required

窗体参数

None.

回复信息

资源描述

核查订单中某种门票类型的某个身份证号码是否可用预订

OrderIdentificationNumberResult
NameDescriptionTypeAdditional information
errcode

错误代码

integer

None.

errmsg

错误的描述

string

None.

productid

产品ID,即门票类型ID。

string

None.

identificationnumber

身份证号

string

None.

回复格式

Test application/json, text/json

Sample:
{
  "errcode": 1,
  "errmsg": "sample string 2",
  "productid": "sample string 3",
  "identificationnumber": "sample string 4"
}

Test application/xml, text/xml

Sample:
<OrderIdentificationNumberResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TourWebApi.Models.Result">
  <errcode>1</errcode>
  <errmsg>sample string 2</errmsg>
  <identificationnumber>sample string 4</identificationnumber>
  <productid>sample string 3</productid>
</OrderIdentificationNumberResult>