Session status check (Optional)

This API is for Setel to check the latest parking session status.

Example request

Request header

To be defined by the vendor.

Request query

QueryTypeDescription
session_idstringSetel session ID

Example response

{
  "data": {
    "sessionId": "01XXXXX777ZZZBBBCCCCDDDD1",
    "licensePlate": "VCC4980",
    "entryTime": "2026-01-01T00:01:00.000Z",
    "exitTime": null,
    "voidTime": null,
    "sessionStatus": "active"
  }
}
VariableTypeDescription
data.sessionIdstringSetel session ID.
data.licensePlatestringVehicle plate number for the queried session.
data.entryTimestring (RFC3339)Session entry/check-in timestamp.
data.exitTimestring (RFC3339) | nullSession exit timestamp, null if not exited yet.
data.voidTimestring (RFC3339) | nullSession void timestamp, null if not voided.
data.sessionStatusstringStatus of the session: active, exited, voided, unknown.