Skip to main content
GET
/
v2
/
citations
/
{id}
cURL
curl --request GET \
  --url https://api.example.com/v2/citations/{id}/ \
  --header 'Authorization: Bearer <token>'
{
  "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>"
}
The ticket_type field in the response shows the display name (e.g., “Parking”, “Bus Camera”) rather than the numeric ID.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
required

A unique integer value identifying this Parking & Photo Enforcement Violation.

Response

200 - application/json
id
integer
required
issuing_authority
string
required
violation_number
string
required
Maximum string length: 255
ticket_type
string
required
received_date
string<date>
required
ticket_date
string<date>
required
ticket_time
string<time> | null
required
vehicle
object
required
description
string
required
fine_amount
string<decimal>
required
Pattern: ^-?\d{0,6}(?:\.\d{0,2})?$
billing_status_fk
object
required
pdf
string
required
total
string
required
driver
object
required
notice_number
string | null
Maximum string length: 255
issue_date
string<date> | null
penalty_amount
string<decimal> | null
Pattern: ^-?\d{0,6}(?:\.\d{0,2})?$
service_fee
string<decimal> | null
Pattern: ^-?\d{0,6}(?:\.\d{0,2})?$
billing_status
enum<string>
default:NO_ACTION
  • NO_ACTION - No Action
  • CARD_NOT_ON_FILE - Card Not On File
  • INVOICED_NOT_PAID - Invoiced – Not Paid
  • PAID_SUCCESSFULLY - Paid Successfully
  • CREDIT_CARD_DECLINED - Credit Card Declined
  • EXPIRED_CREDIT_CARD - Expired Credit Card
  • EMPLOYEE_USE_OR_FLEET_LIABLE - Employee Use/Fleet Liable
  • USER_NOT_FOUND - User Not Found
  • DISPUTED_TOLL_OR_TICKET - Disputed Toll/Ticket
  • VALIDATION_ISSUES - Validation Issues
  • COD_SERVICE - COD Service
Available options:
NO_ACTION,
CARD_NOT_ON_FILE,
INVOICED_NOT_PAID,
PAID_SUCCESSFULLY,
CREDIT_CARD_DECLINED,
EXPIRED_CREDIT_CARD,
EMPLOYEE_USE_OR_FLEET_LIABLE,
USER_NOT_FOUND,
DISPUTED_TOLL_OR_TICKET,
VALIDATION_ISSUES,
COD_SERVICE
pin
string | null
Maximum string length: 255