alibaba.damai.mev.datasync.notifyperformvalidatestatus (大麦换验平台-本地换票服务-基础数据notifyPerformValidateStatus)

notifyPerformValidateStatus

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
notify_perform_status_param NotifyPerformStatusParam 可选 入参notifyPerformStatusParam
  • └ channel_type
  • Number
  • 必须
  • 0
  • 渠道类型 1 换票 2验票
  • └ increasing
  • Boolean
  • 可选
  • false
  • 是否是正序 false为倒序
  • └ login_key
  • String
  • 必须
  • foo
  • 登录token
  • └ order_field
  • String
  • 可选
  • foo
  • 排序字段
  • └ perform_id
  • Number
  • 必须
  • 0
  • 场次ID
  • └ size
  • Number
  • 可选
  • 0
  • 每页返回条数
  • └ start_index
  • Number
  • 可选
  • 0
  • 查询起始索引
  • └ system_id
  • Number
  • 必须
  • 0
  • 票务系统ID
  • └ type
  • Number
  • 必须
  • 0
  • 验票开启或关闭:2=关闭,1=开启

响应参数

名称 类型 示例值 描述
result Result result
  • └ error_code
  • Number
  • 0
  • 参数errorCode
  • └ error_msg
  • String
  • foo
  • 参数errorMsg
  • └ model
  • Boolean
  • false
  • 是否处理成功
  • └ success
  • Boolean
  • false
  • 参数success

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaDamaiMevDatasyncNotifyperformvalidatestatusRequest req = new AlibabaDamaiMevDatasyncNotifyperformvalidatestatusRequest();
AlibabaDamaiMevDatasyncNotifyperformvalidatestatusRequest.NotifyPerformStatusParam obj1 = new AlibabaDamaiMevDatasyncNotifyperformvalidatestatusRequest.NotifyPerformStatusParam();
obj1.setChannelType(0L);
obj1.setIncreasing(false);
obj1.setLoginKey("foo");
obj1.setOrderField("foo");
obj1.setPerformId(0L);
obj1.setSize(0L);
obj1.setStartIndex(0L);
obj1.setSystemId(0L);
obj1.setType(0L);
req.setNotifyPerformStatusParam(obj1);
AlibabaDamaiMevDatasyncNotifyperformvalidatestatusResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_damai_mev_datasync_notifyperformvalidatestatus_response>
    <result>
        <error_code>0</error_code>
        <error_msg>foo</error_msg>
        <model>false</model>
        <success>false</success>
    </result>
</alibaba_damai_mev_datasync_notifyperformvalidatestatus_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部