1. 請款
Pay with Autopass 商家的多元支付服務
  • 連鎖店-商家的多元支付服務 API
    • 🚗 簡介
    • 🧾 流程簡介
    • 📘 連線方式
    • ⛔ 錯誤訊息
    • 📩 資料交換格式
    • 🚀 交易結果通知(Webhook)
    • <> API Reference
      • 連鎖店功能
        • 取得連鎖店資訊
      • 請款
        • 建立請款
          POST
        • 搜尋請款交易資訊
          GET
        • 取得單筆請款交易資訊
          GET
        • 帳單手動請款
          POST
        • 取消請款交易
          POST
        • 進行退款交易
          POST
      • 服務狀態
        • 確認服務狀態
      • 交易結果通知
        • 交易結果通知
    • Schemas
      • ChainStore
      • Invoice
      • Error
      • ErrorGeneric
      • CreateInvoiceRequest
      • CaptureInvoiceRequest
      • RefundInvoiceRequest
      • TransactionResultNotification
  1. 請款

搜尋請款交易資訊

GET
/v2/invoices
取得請款資訊(依搜尋條件搜尋多筆交易結果)

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Query Params

Responses

🟢200
application/json
取得請款資訊(多筆)
Bodyapplication/json

🟠4XX
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/v2/invoices?id_eq=&invoice_no_eq=&created_at_gteq=&created_at_lteq=&paid_at_gteq=&paid_at_lteq=&plate_number_eq=&state_eq=&page=' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
[
    {
        "id": "string",
        "state": "waiting",
        "payment_state": "pending",
        "plate_number": "string",
        "invoice_no": "string",
        "transaction_type": "string",
        "item_amount": "string",
        "request_description": "string",
        "discount_amount": "string",
        "amount": "string",
        "paid_at": "2019-08-24T14:15:22.123Z",
        "expires_in": 0,
        "refund_state": "no_refund",
        "refund_reason": "string",
        "refunded_at": "2019-08-24T14:15:22.123Z",
        "callback_url": "http://example.com",
        "payment_url": "http://example.com",
        "payment_method": "credit_card"
    }
]
Modified at 2026-09-10 01:52:45
Previous
建立請款
Next
取得單筆請款交易資訊
Built with