> ## Documentation Index
> Fetch the complete documentation index at: https://doc.haipay.net/llms.txt
> Use this file to discover all available pages before exploring further.

# 支付凭证PDF/ZIP

> 根据代付订单号生成支付凭证PDF文件

<div class="flex flex-col gap-4">
  <div class="api-section-heading flex flex-col gap-y-4 w-full">
    <div class="flex items-baseline border-b pb-2.5 border-gray-100 dark:border-gray-800 w-full">
      <h4 class="api-section-heading-title flex-1 mb-0">密钥私钥(生成签名)</h4>
    </div>

    <div />
  </div>

  <input id="secret-key" placeholder="密钥" class="px-3 py-2 border rounded-md" />

  <input id="private-key" placeholder="私钥" class="px-3 py-2 border rounded-md" />
</div>

## 相关主题

* [公共接口](/docs/zh/api/version2/CommonApi)
* [HaiPay API 文档简介](/docs/zh/api-reference/overview)
* [HaiPay 配置与签名指南](/docs/zh/guide/config_settings_and_signature_rules_guide)


## OpenAPI

````yaml docs/zh/api-reference/common/common.openapi.json POST /common/voucher/pdf
openapi: 3.1.0
info:
  title: 公共接口 API
  description: HaiPay 公共接口，包括账户查询、对帐文件下载、代付凭证、汇率查询、支付凭证PDF和商户支付配置查询。
  version: 1.0.0
servers:
  - url: https://uat-interface.haipay.asia
    description: 测试-interface
security: []
tags: []
paths:
  /common/voucher/pdf:
    post:
      tags: []
      summary: 支付凭证PDF/ZIP
      description: 根据代付订单号生成支付凭证PDF文件（仅当订单状态为成功或失败时）。单个订单号返回PDF文件，多个订单号打包为ZIP压缩包返回。
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                appId:
                  type: integer
                  description: 业务ID（后台获取）
                  format: int64
                orderNos:
                  type: array
                  items:
                    type: string
                  description: 代付订单号列表，至少1个，最多100个
                getFee:
                  type: integer
                  description: 是否显示手续费：0=不显示，1=显示，默认：0
                isAmount:
                  type: integer
                  description: 金额显示方式：0=使用实际到账金额，1=使用订单金额，默认：0
                getSubject:
                  type: integer
                  description: 是否显示备注信息：0=不显示，1=显示，默认：0
                lang:
                  type: string
                  description: 凭证语言：zh/en，默认：zh
                sign:
                  type: string
                  description: 签名
              required:
                - appId
                - orderNos
                - sign
            examples: {}
        required: true
      responses:
        '200':
          description: 成功响应：单个订单返回 PDF 文件（application/pdf），多个订单返回 ZIP 压缩包（application/zip）
          content:
            application/pdf:
              schema:
                type: string
                format: binary
                description: PDF文件（单个订单）
            application/zip:
              schema:
                type: string
                format: binary
                description: ZIP压缩包（多个订单）
          headers: {}
        '400':
          description: 参数校验失败或签名错误
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    description: 状态码
                  error:
                    type: string
                    description: 错误码
                  msg:
                    type: string
                    description: 错误信息
                  data:
                    type: 'null'
      deprecated: false
      security: []

````