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/{invoice_no}
取得請款資訊

Request

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

Responses

🟢200
application/json
取得請款資訊
Bodyapplication/json

🟠4XX
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/v2/invoices/' \
--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