GET api/Authorize?APIKey={APIKey}&MACaddress={MACaddress}
Returns the ControllerID and Password for an Existing Registered Controller.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| APIKey |
The API key provided |
string |
Required |
| MACaddress |
The MACaddress of the controller |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
The system returns a JSON object that contains the ControllerID and the ControllerPassword.
ControllerRegistration| Name | Description | Type | Additional information |
|---|---|---|---|
| ControllerID | string |
None. |
|
| ControllerPassword | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ControllerID": "sample string 1",
"ControllerPassword": "sample string 2"
}
application/xml, text/xml
Sample:
<AuthorizeController.ControllerRegistration xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIreg.Controllers"> <ControllerID>sample string 1</ControllerID> <ControllerPassword>sample string 2</ControllerPassword> </AuthorizeController.ControllerRegistration>