POST api/Busi/SellTicket/ActivateTicket
激活一个景区门票时使用的API。 仅适应于“延迟激活”的门票。 errcode=0表示成功,tag表示具体的激活结果(返回值,激活的结果,‘1’表示已激活,‘2’表示已超过激活期限,不能再次激活,3门票已被激活,无须再次激活。0没有激活,‘4’指定的门票账户不存在,不需要执行活操作,‘5’当前门票不是可以延迟激活的门票,无需执行激活,‘6’没有找到对应的门票销售记录,不需要执行激活)。
Request Information
URI Parameters
None.
Body Parameters
TicketActivateForSecnicParmName | Description | Type | Additional information |
---|---|---|---|
TicketCode |
门票的唯一号码,有时也叫“内部识别号(LBSBH)”,还有可能叫“TicketId”。 |
string |
Required Max length: 32 |
ActivateMode |
激活的模式:激活模式 ‘I’表示立即,售票的同时激活,‘M’来自小程序的延迟激活,‘S’来自短信的延迟激活,‘F’来自前台的延迟激活,‘C’首次检票的延迟自动激活,‘L’达到最后激活日期的延迟激活,‘O’其他的延迟激活。 |
string |
Required Max length: 1 |
Request Formats
application/json, text/json
{ "TicketCode": "sample string 1", "ActivateMode": "sample string 2" }
application/xml, text/xml
<TicketActivateForSecnicParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DigitalScience.DataTransfer.Tour.V5.Parm.TicketActivate"> <ActivateMode>sample string 2</ActivateMode> <TicketCode>sample string 1</TicketCode> </TicketActivateForSecnicParm>
application/x-www-form-urlencoded
Sample not available.
application/bson
Binary JSON content. See http://bsonspec.org for details.
Response Information
Resource Description
激活一个景区门票时使用的API。 仅适应于“延迟激活”的门票。 errcode=0表示成功,tag表示具体的激活结果(返回值,激活的结果,‘1’表示已激活,‘2’表示已超过激活期限,不能再次激活,3门票已被激活,无须再次激活。0没有激活,‘4’指定的门票账户不存在,不需要执行活操作,‘5’当前门票不是可以延迟激活的门票,无需执行激活,‘6’没有找到对应的门票销售记录,不需要执行激活)。
CommonOperationResultName | Description | Type | Additional information |
---|---|---|---|
errcode |
错误代码,通常0表示成功,其他值表示错误。 |
integer |
None. |
errmsg |
错误描述,当errcode不为零时,此值可以用于呈现给用户。 |
string |
None. |
tag |
操作同时,服务器端需要返回的其他值。 |
string |
None. |
Response Formats
application/json, text/json
{ "errcode": 1, "errmsg": "sample string 2", "tag": "sample string 3" }
application/xml, text/xml
<CommonOperationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DigitalScience.DataTransfer"> <errcode>1</errcode> <errmsg>sample string 2</errmsg> <tag>sample string 3</tag> </CommonOperationResult>
application/bson
Binary JSON content. See http://bsonspec.org for details.