Autopass 停車場服務文件
  1. 車牌辨識進出 API
Autopass 停車場服務文件
  • 🚘 車牌辨識進出
    • 🚗 概述
    • 🧠 核心概念
    • 🔐 API 連線配置
    • ⚙️ Rate Limit(速率限制)說明
    • 🧩 使用案例
      • 首選交易流程
      • 管理停車紀錄
  • 🔥 使用 AI 輔助進行整合
    • 純文字文件
    • MCP protocol
  • </> API Reference
    • 車牌辨識進出 API
      • 查詢車輛停車紀錄列表
        GET
      • 查詢車輛停車紀錄
        GET
      • 車輛進場
        POST
      • 取消停車紀錄
        POST
      • 車輛離場
        POST
      • 修改車進場資訊
        PUT
      • 修改車輛離場資訊
        PUT
      • 請款
        POST
      • 直接請款
        POST
  • Schemas
    • Schemas
      • ParkingSessionVoState
      • AlprScenarioConfig
      • AlprTransactionMetadata
      • AuthConfigVO
      • CancelParkingSessionRequest1
      • CarType
      • CancelParkingBillOccupationResponse
      • CancelRequest
      • CancelParkingSessionResponse
      • CancelParkingSessionRequest
      • CalculateAmountResponse
      • ChargeTransactionRequest
      • ChargeRequest2
      • CancelParkingSessionResponse1
      • ChargeResponse
      • Data
      • DerecognizeRequestBody
      • CancelRequest1
      • DeregisterPaymentUserIdentityRequest
      • ChargeRequest
      • ChargeTransactionRequest1
      • DeregisterSiteServiceExternalPlatformRequest
      • ChargeRequest1
      • DeregisterSiteServiceExternalPlatformRequest1
      • EndParkingSessionResponse
      • DirectChargeResponse
      • EndpointVO
      • EditParkingSessionResponse
      • FindDirectExternalPlatformStatusResponse
      • FindParkingBillByIdResponse
      • FindPaymentUserIdentityByIdentityDataResponse
      • DirectChargeRequest
      • FindSiteServiceExternalPlatformRegistrationByIdResponse
      • DirectChargeRequest1
      • FindParkingSessionsByFuzzyPlateNumberResponse
      • EndParkingSessionRequest1
      • EndParkingSessionRequest2
      • GetSiteServiceExternalPlatformByTagsResponse
      • EditEndInfoRequest
      • GetSiteServiceExternalPlatformsResponse
      • EndParkingSessionResponse1
      • IssueTarget
      • EditStartInfoRequest
      • KioskIdentifier
      • EndParkingSessionRequest
      • ExternalPlatformTag
      • OccupyParkingBillRequest
      • OccupyParkingBillResponse
      • OrderDetailVO
      • OrderDetailVO1
      • OrderItem
      • OrderItemVO
      • OrderSimpleVO
      • OrderVO
      • MarkOfflineChargePaidRequest
      • ParkingLotMetadata
      • ParkingTransactionVO
      • ParkingOrderRequestSimpleVO
      • ParkingOrderRequestVO
      • ParkingSessionVo
      • PaymentProviderType
      • PayTaipeiCreateCardlessTransactionsRequest
      • PayTaipeiInvoiceNotificationRequest
      • PayTaipeiRefundRequest
      • PayTaipeiStartParkingSessionRequest
      • PaymentState
      • PaymentUserIdentity
      • PaymentUserIdentityType
      • PaymentProviderRequest
      • PaymentProviderParkingSessionVO
      • PaymentUserIdentityVO
      • PaymentVO
      • PlatformVO
      • QuerySiteServiceExternalPlatformRegistrationsResponse
      • RecognitionResult
      • RecognitionState
      • Request
      • RecognizeParkingBillRequest
      • RecognizeParkingBillResponse
      • RefundRequestBody
      • RefundState
      • RefundTransactionRequest
      • RefundTransactionVO
      • RegisterPaymentUserIdentityRequest
      • StartParkingSessionRequest1
      • RegisterPaymentUserIdentityResponse
      • RegisterSiteServiceExternalPlatformRequest
      • RegisterSiteServiceExternalPlatformRequest1
      • RequestRefundRequest
      • RefundAlprTransactionRequest
      • RetryDisputedParkingBillRequest
      • RefundRequestBody1
      • SiteServiceExternalPlatformPaymentUserIdentityRelationVO
      • StartParkingSessionRequest2
      • Source
      • Source1
      • SourceVO
      • StartParkingSessionResponse
      • State
      • UpdateParkingSessionRequest
      • State1
      • VehicleType
      • UpdateInvoiceInfoRequest
      • UpdateInvoiceInfoResponse
      • TransactionConfigVO
      • VehicleClass
      • ZonedDateTime
      • StartParkingSessionRequest
      • WebhookConfigVO
  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/cancel
將 停車紀錄 更新為 已取消(CANCELED) 。

重要#

狀態為 已取消(CANCELED) 的停車紀錄,無法被請款。
用戶端看不到被取消的筆停車紀錄,對用戶而言等同刪除。

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權限不足
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://maas-alpha-maas-api.pklotcorp.com/parking-lots/v1/alpr/parking-sessions/cancel' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "parkingSessionId": "27e06cfb-1d62-4a0f-a9a1-266e5b4a2b66",
    "cancelDateTime": "2025-10-28T18:00:00.000+0800"
}'
Response Response Example
{
    "data": {
        "id": "27e06cfb-1d62-4a0f-a9a1-266e5b4a2b66",
        "plateNumber": "ABC-2025",
        "cancelDateTime": "2025-10-28T18:00:00.000+08:00"
    }
}
Modified at 2025-10-29 07:33:04
Previous
車輛進場
Next
車輛離場
Built with