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"
}Retrieve details for a specific citation.
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"
}ticket_type field in the response shows the display name (e.g., “Parking”, “Bus Camera”) rather than the numeric ID.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful response
Display name of the ticket type. Possible values: 'Bus Camera', 'Parking', 'Red Light Camera', 'Speed Camera', 'Other', 'Idling'.
Show child attributes
Was this page helpful?