Represents the result of a call to the API to validate a Mac Address
This is what is returned when a search for a MacAddress happens.
MacAddressQueryResult
Field | Type | Inherited from | Description |
---|---|---|---|
CanonicalFormat | String | MacAddressQueryResult | Gets or sets the canonical format. |
IsAvailable | Boolean | MacAddressQueryResult | Gets or sets a value indicating whether this instance is available.Possible Values (true, false) |
IsValidFormat | Boolean | MacAddressQueryResult | Gets or sets a value indicating whether this instance is valid format.Possible Values (true, false) |
{
"CanonicalFormat" : "String",
"IsAvailable" : "Boolean",
"IsValidFormat" : "Boolean"
}
Example in C#
// Returns: MacAddressQueryResult
var macAddressQueryResult = await client.ValidateMacAddress(String macAddress, String controllerId);
Example in CURL
curl -X DELETE \
https://api.us.acresecurity.cloud/api/verifymac?macAddress=URLENCODEDMACADDRESS&controllerId=CONTOLLER.KEY \
-H 'Authorization: Bearer TOKEN_GOES_HERE'