Integrations
Auth
Fleet
- Settings
- ServiceTypes
- Regions
- GETList
- GETGet
- POSTCreate
- PUTUpdate
Tolls
Integrations
- Fleet Active Integrations
- Logs
- GETList
Drivers
- Driver-agreements
- POSTAdd
- GETList
- POSTBulk Create
Parking
GET
GET
/
v2
/
citations
/
{ID}
curl --request GET \
--url https://api.app.fleetit.com/v2/citations/{ID}/ \
--header 'Authorization: Bearer <token>'
{
"id": 12345,
"issuing_authority": "City of Example",
"notice_number": "N123456",
"violation_number": "V12345678",
"ticket_type": "Parking",
"received_date": "2024-06-20",
"ticket_date": "2024-08-15",
"ticket_time": "11:29:00",
"vehicle": {
"id": 54321,
"plate_number": "ABC123",
"plate_state": "TX",
"vehicle_number": "1HGCM82633A123456",
"vehicle_make": "TOYOTA",
"vehicle_model": "COROLLA",
"year": "2021",
"lessee_renter": null,
"custom_fields": {},
"vehicle_type_code": "72_72",
"active": true
},
"description": "Tow Away Zone",
"issue_date": "2024-05-21",
"fine_amount": "50.00",
"penalty_amount": "0.00",
"billing_status": "NO_ACTION",
"pdf": "https://example.com/sample_violation.pdf"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
Path Parameters
Response
200 - application/json
Successful response
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.app.fleetit.com/v2/citations/{ID}/ \
--header 'Authorization: Bearer <token>'
{
"id": 12345,
"issuing_authority": "City of Example",
"notice_number": "N123456",
"violation_number": "V12345678",
"ticket_type": "Parking",
"received_date": "2024-06-20",
"ticket_date": "2024-08-15",
"ticket_time": "11:29:00",
"vehicle": {
"id": 54321,
"plate_number": "ABC123",
"plate_state": "TX",
"vehicle_number": "1HGCM82633A123456",
"vehicle_make": "TOYOTA",
"vehicle_model": "COROLLA",
"year": "2021",
"lessee_renter": null,
"custom_fields": {},
"vehicle_type_code": "72_72",
"active": true
},
"description": "Tow Away Zone",
"issue_date": "2024-05-21",
"fine_amount": "50.00",
"penalty_amount": "0.00",
"billing_status": "NO_ACTION",
"pdf": "https://example.com/sample_violation.pdf"
}