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/parking-sessions/end
將 停車紀錄 更新為 已離場(ENDED)

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權限不足
🟠404Record Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://maas-alpha-maas-api.pklotcorp.com/parking-lots/v1/alpr/parking-sessions/end' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "parkingSessionId": "ae5ee926-24b2-4a6b-83c4-3f9bf2ed4942",
    "endDateTime": "2025-10-28T16:11:33.427+08:00",
    "imageUrl": null,
    "imageBase64": null
}'
Response Response Example
200 - Success
{
    "data": {
        "id": "ff453933-5af2-403b-b5f0-534dc2f5173d",
        "plateNumber": "ABC-2025",
        "startDateTime": "2025-10-28T12:11:33.427+08:00",
        "endDateTime": "2025-10-29T10:00:00.427+08:00"
    }
}
Modified at 2025-10-29 07:31:07
Previous
取消停車紀錄
Next
修改車進場資訊
Built with