blueflag_logo

Registration Status#

The current status of a vehicle's registration.



Attributes


vin string

A unique 17 character code used to identify individual motor vehicles.


chassis string

A unique code used to identify individual motor vehicles. Used before January 1989 in Australia.


registration.plate string

An alphanumeric code used to identify vehicles. The plate is visible on the front and rear of most vehicles.


registration.state string

The area within Australia where the vehicle is registered.

One of: ACT, NSW, NT, QLD, SA, TAS, VIC, WA


registration.status string

Can be either Registered, Unregistered or Suspended.


registration.expiry_date string (YYYY-MM-DD)

Status and expiry date update when registration is paid / cancelled or lapsed. Some states update within 1 hour while others update overnight.


nvic string

Glass's National Vehicle Identification Code (NVIC) is a unique character code used to identify an individual motor vehicle.

This value is only available to Glass's customers.
Please contact us for futher information if you're interested.



ENDPOINT URL
1
https://sandbox.blueflag.com.au/nevdis/registration_status?plate=TEST00&state=VIC&include_nvic=true"
EXAMPLE REQUEST
bash
1
curl "https://sandbox.blueflag.com.au/nevdis/registration_status?plate=TEST00&state=VIC&include_nvic=true" -H "Authorization: secret_SANDBOX_f1nlZOh0Xr1JvMgJy0d0l9i5JybnBEAYfl7isuU0_o-1GkBsaN8f"
EXAMPLE RESPONSE
json
1
{
2
"request_id": "acc0e116-3e15-4910-ada7-6367b62e60ed",
3
"result": [
4
{
5
"vin": "KMHH351EMKU00TEST",
6
"chassis": null,
7
"registration": {
8
"plate": "TEST00",
9
"state": "VIC",
10
"status": "REGISTERED",
11
"expiry_date": "2022-01-16"
12
},
13
"nvic": "042519"
14
}
15
]
16
}