curl --request GET \
--url https://api.example.com/v2/citations/ \
--header 'Authorization: Bearer <token>'{
"count": 123,
"results": [
{
"id": 123,
"issuing_authority": "<string>",
"violation_number": "<string>",
"ticket_type": "<string>",
"received_date": "2023-12-25",
"ticket_date": "2023-12-25",
"ticket_time": "<string>",
"vehicle": {
"id": 123,
"custom_fields": "<string>",
"added_date": "2023-11-07T05:31:56Z",
"fleet": {
"id": 123,
"region_details": [
{
"id": 123,
"title": "<string>"
}
],
"title": "<string>",
"is_active": true,
"billing_type": "PREPAID",
"onboarding_stage": "INITIAL",
"warning_threshold_per_vehicle": "<string>",
"deactivation_threshold_per_vehicle": "<string>",
"client": "<string>",
"onboarding_vehicle_order": 123
},
"plate_number": "<string>",
"plate_state": "<string>",
"vehicle_number": "<string>",
"active": true,
"vehicle_make": "<string>",
"vehicle_model": "<string>",
"year": "<string>",
"lessee_renter": "<string>",
"vehicle_type_code": "<string>"
},
"description": "<string>",
"fine_amount": "<string>",
"billing_status_fk": {
"id": 123,
"value": "<string>",
"display_text": "<string>",
"ticket_type": "<string>",
"fleet": 123,
"is_system": "<string>"
},
"pdf": "<string>",
"total": "<string>",
"driver": {
"id": 123,
"first_name": "<string>",
"address_line_1": "<string>",
"city": "<string>",
"state": "<string>",
"zip": "<string>",
"email": [
"jsmith@example.com"
],
"driver_id": "<string>",
"last_name": "<string>",
"address_line_2": "<string>",
"contact_number": "<string>"
},
"notice_number": "<string>",
"issue_date": "2023-12-25",
"penalty_amount": "<string>",
"service_fee": "<string>",
"billing_status": "NO_ACTION",
"pin": "<string>"
}
],
"next": "http://api.example.org/accounts/?offset=400&limit=100",
"previous": "http://api.example.org/accounts/?offset=200&limit=100"
}Retrieve a list of all citations in the system.
curl --request GET \
--url https://api.example.com/v2/citations/ \
--header 'Authorization: Bearer <token>'{
"count": 123,
"results": [
{
"id": 123,
"issuing_authority": "<string>",
"violation_number": "<string>",
"ticket_type": "<string>",
"received_date": "2023-12-25",
"ticket_date": "2023-12-25",
"ticket_time": "<string>",
"vehicle": {
"id": 123,
"custom_fields": "<string>",
"added_date": "2023-11-07T05:31:56Z",
"fleet": {
"id": 123,
"region_details": [
{
"id": 123,
"title": "<string>"
}
],
"title": "<string>",
"is_active": true,
"billing_type": "PREPAID",
"onboarding_stage": "INITIAL",
"warning_threshold_per_vehicle": "<string>",
"deactivation_threshold_per_vehicle": "<string>",
"client": "<string>",
"onboarding_vehicle_order": 123
},
"plate_number": "<string>",
"plate_state": "<string>",
"vehicle_number": "<string>",
"active": true,
"vehicle_make": "<string>",
"vehicle_model": "<string>",
"year": "<string>",
"lessee_renter": "<string>",
"vehicle_type_code": "<string>"
},
"description": "<string>",
"fine_amount": "<string>",
"billing_status_fk": {
"id": 123,
"value": "<string>",
"display_text": "<string>",
"ticket_type": "<string>",
"fleet": 123,
"is_system": "<string>"
},
"pdf": "<string>",
"total": "<string>",
"driver": {
"id": 123,
"first_name": "<string>",
"address_line_1": "<string>",
"city": "<string>",
"state": "<string>",
"zip": "<string>",
"email": [
"jsmith@example.com"
],
"driver_id": "<string>",
"last_name": "<string>",
"address_line_2": "<string>",
"contact_number": "<string>"
},
"notice_number": "<string>",
"issue_date": "2023-12-25",
"penalty_amount": "<string>",
"service_fee": "<string>",
"billing_status": "NO_ACTION",
"pin": "<string>"
}
],
"next": "http://api.example.org/accounts/?offset=400&limit=100",
"previous": "http://api.example.org/accounts/?offset=200&limit=100"
}ticket_type field represents the category of traffic violation:
| ID | Display Name | Description |
|---|---|---|
| 1 | Bus Camera | Bus lane violations captured by camera |
| 2 | Parking | Parking violations and tickets |
| 3 | Red Light Camera | Red light violations captured by camera |
| 4 | Speed Camera | Speed violations captured by camera |
| 5 | Other | Other types of traffic violations |
| 6 | Idling | Vehicle idling violations |
GET /v2/citations?ticket_type=2 # Filter for Parking violations
GET /v2/citations?ticket_type=1 # Filter for Bus Camera violations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Multiple values may be separated by commas.
CARD_NOT_ON_FILE, COD_SERVICE, CREDIT_CARD_DECLINED, DISPUTED_TOLL_OR_TICKET, EMPLOYEE_USE_OR_FLEET_LIABLE, EXPIRED_CREDIT_CARD, INVOICED_NOT_PAID, NO_ACTION, PAID_SUCCESSFULLY, USER_NOT_FOUND, VALIDATION_ISSUES Multiple values may be separated by commas.
Number of results to return per page.
The initial index from which to return the results.
Which field to use when ordering the results.
Bus Camera - Bus CameraIdling - IdlingParking - ParkingRed Light Camera - Red Light CameraSpeed Camera - Speed CameraOther - OtherBus Camera, Idling, Other, Parking, Red Light Camera, Speed Camera Was this page helpful?