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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Fleet-Id
string

Path Parameters

ID
string
required

Response

200 - application/json
Successful response
id
integer
issuing_authority
string
notice_number
string
violation_number
string
ticket_type
string
received_date
string
ticket_date
string
ticket_time
string
vehicle
object
description
string
issue_date
string
fine_amount
string
penalty_amount
string
billing_status
string
pdf
string