Gate/LPR session sync
Operator, partner, or servicelotSessionsquery($lotId: ID!) {
lotSessions(lotId: $lotId, status: ACTIVE) {
id
vehicle { plate state }
space
startedAt
endsAt
status
}
}Sync active sessions to gates and LPR cameras, publish rates to reservation marketplaces, issue citations, and export operational data with scoped OAuth credentials.
api.parktab.app/graphqlRead active sessions by lot, plate, space, status, and payment reference.
Publish lot catalogs, rates, partner benefits, and event overrides.
Check plates, inspect overstays, and issue citations from partner systems.
Export sessions, citations, and revenue data.
Run a query to see the JSON response.
parking:lots:readparking:lots:writeparking:lots:createparking:rates:writeparking:events:readparking:events:writeparking:sessions:readparking:sessions:writeparking:citations:readparking:citations:writelotSessionsquery($lotId: ID!) {
lotSessions(lotId: $lotId, status: ACTIVE) {
id
vehicle { plate state }
space
startedAt
endsAt
status
}
}lotsquery {
lots {
id
name
address
publicUrl
settings { timezone }
currentRate { id name summary }
}
}citationIssuemutation($lotId: ID!) {
citationIssue(
lotId: $lotId
plate: "ABC123"
state: "NY"
location: "Level 2"
reason: "No active session"
amountUsd: 45
) { id code status }
}