文档中心 > API类目 > 迎客松牌照审核接口

yunos.trade.admin.common.operation (交易迎客松通用服务接口)

迎客松交易相关通用接口

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
parameter String 可选 {"id":123121} 入参数据,json格式
method_name String 必须 getById 调用方法
interface_name String 必须 com.yunos.service.orderService 调用接口

响应参数

名称 类型 示例值 描述
result TopResult {"isSuccess":true} 返回结果
  • └ result
  • String
  • {hello}
  • 实际内容

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
YunosTradeAdminCommonOperationRequest req = new YunosTradeAdminCommonOperationRequest();
req.setParameter("{\"id\":123121}");
req.setMethodName("getById");
req.setInterfaceName("com.yunos.service.orderService");
YunosTradeAdminCommonOperationResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<yunos_trade_admin_common_operation_response>
    <result>
        <result>{hello}</result>
    </result>
</yunos_trade_admin_common_operation_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

返回
顶部