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
GET
https://maas-alpha-maas-api.pklotcorp.com
/parking-lots/v1/alpr/parking-sessions/{id}
使用 ParkingSessionId 查詢單筆停車紀錄

Request

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

Query Params

Responses

🟢200Successful
application/json
Body

🟠401未認證
🟠403權限不足
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://maas-alpha-maas-api.pklotcorp.com/parking-lots/v1/alpr/parking-sessions/{id}?isQueryAlprTransaction=false' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "data": {
        "id": "9ccbc4b5-e5f4-4a00-9f81-55b124f0b1e7",
        "parkingLotId": "ab0f70a7-5ca5-48bf-b1b4-cac5ff7807b5",
        "parkingLotName": "麻吉壓力測試停車場",
        "state": "ENDED",
        "plateNumber": "LUS-2222",
        "startDateTime": "2025-10-23T10:43:19.000+08:00",
        "hasStartImage": true,
        "hasEndImage": true,
        "endDateTime": "2025-10-23T10:43:40.000+08:00",
        "createDateTime": "2025-10-23T10:42:54.044+08:00",
        "updateDateTime": "2025-10-23T10:44:10.497+08:00",
        "isRegisteredUser": true
    },
    "extra": {
        "totalElement": 1,
        "totalPage": 1
    }
}
Modified at 2025-10-28 10:22:08
Previous
查詢車輛停車紀錄列表
Next
車輛進場
Built with