GET api/BindingToken?strImei={strImei}&strQRCode={strQRCode}&strDeviceDesc={strDeviceDesc}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| strImei | string |
Required |
|
| strQRCode | string |
Required |
|
| strDeviceDesc | string |
Required |
Body Parameters
None.
Response Information
Resource Description
BaseRequestResponseOfBindingResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | integer |
None. |
|
| Message | string |
None. |
|
| Data | BindingResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"Code": 1,
"Message": "sample string 2",
"Data": {
"strSvrTime": "sample string 1",
"strLid": "sample string 2",
"strNick": "sample string 3",
"strPubKey": "sample string 4",
"strPriKey": "sample string 5",
"strImei": "sample string 6"
}
}
application/xml, text/xml
Sample:
<BaseRequestResponseOfBindingResponsebWX0lEhi xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SafeCenterServer.Models">
<Code>1</Code>
<Data>
<strImei>sample string 6</strImei>
<strLid>sample string 2</strLid>
<strNick>sample string 3</strNick>
<strPriKey>sample string 5</strPriKey>
<strPubKey>sample string 4</strPubKey>
<strSvrTime>sample string 1</strSvrTime>
</Data>
<Message>sample string 2</Message>
</BaseRequestResponseOfBindingResponsebWX0lEhi>