Lookup Name or Plate

Retrieve all records associated with a name or license plate.

This framework export handles the Lookup Name or Plate API endpoint.

API Call Example

function performLookup(types, plate, partial, first, last, mi, cb)
    exports["sonorancad"]:performApiRequest({{
        ["types"] = {},
        ["plate"] = plate,
        ["partial"] = partial,
        ["first"] = first,
        ["last"] = last,
        ["mi"] = mi
    }}, "LOOKUP", function(res)
        if cb ~= nil then
            cb(res)
        end
    end)
end
Property
Type
Description

types

Array

Array of record types to lookup

plate

String

Plate to lookup

partial

Boolean

Partial or exact search

first

String

First name to lookup

last

String

Last name to lookup

mi

String

Middle initial to lookup

cb

Function

Callback function

Last updated

Was this helpful?