Skip to content

Query by Notice Number

Request

Returns the details of a specific traffic fine by its AARTO notice number.

Security
ApiKeyAuth
Bodyapplication/jsonrequired
noticeNumberstringrequired

AARTO notice number of the traffic fine.

Example:"0100110373510309"
curl -i -X POST \
  https://docs.amabills.co.za/_mock/openapi/v1/TrafficFine/ViewByNoticeNumber \
  -H 'Content-Type: application/json' \
  -H 'X-API-KEY: YOUR_API_KEY_HERE' \
  -d '{
    "noticeNumber": "0100110373510309"
  }'

Responses

Traffic fine query by notice number response.

Bodyapplication/json
successboolean
noticeNumberstring

The notice number used in the query.

resultobject or null(QueryByNoticeNumberResult)

Query result. null when success is false.

errorobject or null(ErrorMessage)

Unified error type returned in the error field of all Traffic Fine responses when success is true.

Response
{ "success": true, "noticeNumber": "0100110373510309", "result": { "infringements": [], "hasFinesToPay": true, "netFinesAmnt": 560, "vendorFeeAmnt": 14, "grossAmnt": 574, "noticeNumber": "0100110373510309" } }