##### Brief description - By accessing this interface, quote and sign device information (version number, Bluetooth name, etc.) to the backend ##### Request URL Demo address - `http://demo.esltag.cc/openapi/reportinfo` ##### Request method - POST ##### Request Message Example ```http POST http://demo.esltag.cc/openapi/reportinfo HTTP/1.1 Host: demo.esltag.cc Accept: */* Content-Type: application/x-www-form-urlencoded; charset=UTF-8 ``` ##### Request Body Parameter | Parameter name | Required | Type | Example | Description | | --- | --- | --- | --- | --- | | `appid` | Yes | string | `d114c07a-24ed-41b2-9cc3-58ae5bb9ace1_2303065600000005` | Account AppID | | `data` | Yes | string | `{"clientid":"222C0547C3661D","version":"V1.00","name_bluetooth":"@abcde12345"}` | json | | `ts` | Yes | long | 1679539549647 | Current timestamp is at 13 bits | | `sign` | Yes | string | `1E3B1050FBE6F1B53B4F858CD8E39***` | The signature value is calculated by the signature algorithm | ###### Data Parameter | Parameter name | Type | Explain | | --- | --- | --- | | `clientid` | string | Price Tag serial number | | `version` | string | Firmware Version | | `name_bluetooth` | string | Bluetooth Name | | `push_id` | int | MQTT Notification Number | ##### Response Message Example ```http HTTP/1.1 200 OK Content-Length: 121 Content-Type: application/json; charset=utf-8 ``` ##### Return an example ```json { "State": "Done", "Message": "操作成功!", "Number": "", "Data": "null", "Level": 0, "ErrorColumn": null } ```