文档中心 > API类目 > 天猫优品

tmall.tmyp.ai.invoice.get (优品发票查询)

优品发票查询

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
seller_id Number 可选 23123 店铺id
order_id String 可选 231231 订单id

响应参数

名称 类型 示例值 描述
result InvoiceIssueStatusDTO 返回结果
  • └ issued
  • Boolean
  • true
  • 是否开票成功
  • └ invoice_time
  • Date
  • 177774444
  • 是否开票时间
suc Boolean true 调用成功

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
TmallTmypAiInvoiceGetRequest req = new TmallTmypAiInvoiceGetRequest();
req.setSellerId(23123L);
req.setOrderId("231231");
TmallTmypAiInvoiceGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<tmall_tmyp_ai_invoice_get_response>
    <result>
        <issued>true</issued>
        <invoice_time>177774444</invoice_time>
    </result>
    <suc>true</suc>
</tmall_tmyp_ai_invoice_get_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

返回
顶部