Autopass 停車場服務文件
  1. 車牌辨識進出 API
Autopass 停車場服務文件
  • 🚘 車牌辨識進出
    • 🚗 概述
    • 🧠 核心概念
    • 🔐 API 連線配置
    • ⚙️ Rate Limit(速率限制)說明
    • 🧩 使用案例
      • 首選交易流程
      • 管理停車紀錄
  • 🔥 使用 AI 輔助進行整合
    • 純文字文件
    • MCP protocol
  • </> API Reference
    • 車牌辨識進出 API
      • 查詢車輛停車紀錄列表
        GET
      • 查詢車輛停車紀錄
        GET
      • 車輛進場
        POST
      • 取消停車紀錄
        POST
      • 車輛離場
        POST
      • 修改車進場資訊
        PUT
      • 修改車輛離場資訊
        PUT
      • 請款
        POST
      • 直接請款
        POST
  1. 車牌辨識進出 API

請款

Testing Env
https://maas-alpha-maas-api.pklotcorp.com
Testing Env
https://maas-alpha-maas-api.pklotcorp.com
POST
https://maas-alpha-maas-api.pklotcorp.com
/parking-lots/v1/alpr/transactions
透過 停車紀錄 id 建立 停車交易(AlprTransaction)並嘗試向會員扣款,並於返回扣款結果。

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢200OK
application/json
Body

🟠401未認證
🟠403權限不足
🟠422請款失敗
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://maas-alpha-maas-api.pklotcorp.com/parking-lots/v1/alpr/transactions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "parkingSessionId": "3ff52349-14d4-4ace-ae53-4b2b1d53b6d7",
    "chargeDateTime": "2025-10-28T19:11:33.427+08:00",
    "amount": 100,
    "imageBase64": null,
    "imageUrl": null
}'
Response Response Example
200 - Success
{
    "data": {
        "parkingSessionId": "string",
        "plateNumber": "string",
        "startDateTime": "2025-10-28T12:11:33.427+08:00",
        "chargeDateTime": "2025-10-28T12:11:33.427+08:00",
        "amount": 0
    },
    "extra": {}
}
Modified at 2025-10-29 07:24:12
Previous
修改車輛離場資訊
Next
直接請款
Built with