Lookup Name or Plate
Retrieve all records associated with a name or license plate.
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 !== null) {
cb(res);
}
});
}Property
Type
Description
Last updated
Was this helpful?

