## **維護服務器接口 commondUrl**
**接口描述**
* 遠程配置設備攝像頭參數
**請求URL**
* [xxx.com/xxx](http://xxx.com/xxx)
**請求方式**
* post
**請求參數**
| 參數名 | 類型 | 說明 |
| --- | --- | --- |
| deviceId | string | 設備序列號 |
**返回參數**
| 參數名 | 類型 | 說明 |
| --- | --- | --- |
| status| string | 0,成功,非0,失敗|
| deviceId| string | 設備id,不用傳空|
| ip| string | 攝像頭ip|
| port| string | 攝像頭端口|
| userName| string | 攝像頭用戶名|
| passWord| string | 攝像頭登錄密碼|
| tag| string | 攝像頭標記|
**返回示例**
```
"status":0,
"msg":"獲取數據成功",
"data":[
????????{
????????????"deviceId":"723324",
????????????"cameras":[
????????????????{
????????????????????"ip":"192.168.1.1",
????????????????????"port":"8000",
????????????????????"userName":"admin",
????????????????????"passWord":"11111",
????????????????????"tag":"3", //攝像頭標記
????????????????},
{
????????????????????"ip":"192.168.1.1",
????????????????????"port":"8000",
????????????????????"userName":"admin",
????????????????????"passWord":"11111",
????????????????????"tag":"3", //攝像頭標記
},
????????????"deviceId":"11122275",
????????????"cameras":[
????????????????{
????????????????????"ip":"192.168.1.1",
????????????????????"port":"8000",
????????????????????"userName":"admin",
????????????????????"passWord":"11111",
????????????????????"tag":"3", //攝像頭標記
????????????????},
{
????????????????????"ip":"192.168.1.1",
????????????????????"port":"8000",
????????????????????"userName":"admin",
????????????????????"passWord":"11111",
????????????????????"tag":"3", //攝像頭標記
}
????????????]
????????}
????]
}
```