1. Internal
dy-gateway
  • Health
    • 健康检查
      GET
  • Open
    • 统一券核销入口
      POST
    • 验券准备
      POST
    • 获取当前抖音 access_token
      GET
    • 查询门店信息
      GET
  • Internal
    • 查询核销流水
      GET
    • 查询核销汇总报表
      GET
    • 创建核销端应用
      POST
    • 查询核销端应用列表
      GET
    • 修改应用 token 读取权限
      PATCH
  • 数据模型
    • HealthResponse
    • ErrorResponse
    • MessageResponse
    • AppStatus
    • VerificationStatus
    • EnrichmentStatus
    • OrderStatus
    • PrepareCouponRequest
    • VerifyCouponRequest
    • VerificationView
    • VerificationResponse
    • AccessToken
    • AccessTokenResponse
    • VerifierApp
    • CreateAppResponseData
    • CreateAppRequest
    • CreateAppResponse
    • AppListResponse
    • UpdateTokenAccessRequest
    • VerificationListResponse
    • VerificationSummaryRow
    • VerificationSummaryResponse
  1. Internal

查询核销流水

GET
/v1/internal/reports/verifications
返回结构化核销流水;当 export=csv 时返回 CSV 文件流。
status 查询参数对应 verify_status。

请求参数

Authorization
API Key
在 header 添加参数
X-XTJ-UID
示例:
X-XTJ-UID: ********************
or
Query 参数

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/internal/reports/verifications?start_time&end_time&poi_id&app_id&status&certificate_id&order_id&page&page_size&export' \
--header 'X-XTJ-UID: <api-key>'

返回响应

🟢200成功
application/json
查询成功
Body

示例
{
    "data": [
        {
            "id": 0,
            "app_id": 0,
            "app_name": "string",
            "poi_id": "string",
            "verify_status": "processing",
            "error_code": 0,
            "error_description": "string",
            "certificate_id": "string",
            "encrypted_code": "string",
            "origin_code": "string",
            "coupon_status": "string",
            "product_id": "string",
            "product_name": "string",
            "sku_id": "string",
            "sku_name": "string",
            "verify_records_count": 0,
            "verify_id": "string",
            "order_id": "string",
            "source_order_id": "string",
            "ext_order_id": "string",
            "order_status": 0,
            "pay_amount": 0,
            "receipt_amount": 0,
            "discount_amount": 0,
            "enrichment_status": "pending",
            "enrichment_retry_count": 0,
            "douyin_response": {
                "property1": "string",
                "property2": "string"
            },
            "expire_time": "2019-08-24T14:15:22.123Z",
            "verify_time": "2019-08-24T14:15:22.123Z",
            "create_order_time": "2019-08-24T14:15:22.123Z",
            "pay_time": "2019-08-24T14:15:22.123Z",
            "created_at": "2019-08-24T14:15:22.123Z",
            "updated_at": "2019-08-24T14:15:22.123Z"
        }
    ],
    "total": 0,
    "page": 0,
    "page_size": 0
}
🟠400请求有误
🟠401未认证
🔴500服务器内部错误
修改于 2026-03-16 02:28:54
上一页
查询门店信息
下一页
查询核销汇总报表
Built with