Check Plate

This endpoint allows you to check a plate.

CheckPlate(data, callback)

POST https://imperialcad.app/api/1.1/wf/checkplate


Request Body

Name
Type
Description

plate

string

License Plate


exports["ImperialCAD"]:CheckPlate({
    plate = "XYZ123"
  }, function(success, res)
    if success then
      local result = json.decode(res)
      print("Plate Registered To: " .. result.response.owner)
    else
      print("Failed to check plate.")
    end
end)

Last updated

Was this helpful?