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
建立一筆狀態為 停車中(STARTED)的停車紀錄,供後續 請款, 離場 等 API 使用。

Request

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

Body Params application/json

Examples

Responses

🟢200OK
application/json
Body

🟠401未認證
🟠403權限不足
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://maas-alpha-maas-api.pklotcorp.com/parking-lots/v1/alpr/parking-sessions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "plateNumber": "ABC-2025",
    "vehicleClass": "CAR",
    "startDateTime": "2025-10-28T12:11:33.427+08:00",
    "imageBase64": null,
    "imageUrl": null
}'
Response Response Example
200 - Success(該車牌為會員)
{
    "data": {
        "id": "c6b478c1-df59-4142-b188-ab541405a9d8",
        "plateNumber": "ABC-2025",
        "startDateTime": "2025-10-28T12:11:33.427+08:00",
        "isRegisteredUser": true
    }
}
Modified at 2025-10-29 07:29:20
Previous
查詢車輛停車紀錄
Next
取消停車紀錄
Built with