主頁(yè) > 服務(wù)與支持 > 開(kāi)發(fā)平臺(tái) > 服務(wù)端API參考 > 硬終端管理 增加終端
更新時(shí)間:2019-11-20
企業(yè)管理員通過(guò)該接口添加硬終端。
請(qǐng)求方法 |
POST |
---|---|
請(qǐng)求地址 |
/rest/usg/datacenter/v1/corp/device |
傳輸協(xié)議 |
HTTPS |
參數(shù) |
是否必須 |
類型 |
位置 |
描述 |
---|---|---|---|---|
Authorization |
是 |
String |
Header |
授權(quán)令牌。將執(zhí)行鑒權(quán)響應(yīng)的accessToken進(jìn)行Base64轉(zhuǎn)碼操作。 樣例:Basic Base64(accessToken) |
name |
是 |
String |
Body |
終端名稱,可以自定義,建議為具體位置,方便識(shí)別。 長(zhǎng)度:1-64。 |
model |
是 |
String |
Body |
終端型號(hào),枚舉類型。當(dāng)前支持TE系列硬件終端,具體的終端類型可以通過(guò)獲取所有終端類型接口查詢。 長(zhǎng)度:1-128。 |
sn |
否 |
String |
Body |
終端SN碼,僅可包含數(shù)字、字母和下劃線。 長(zhǎng)度:1-30。 |
deptCode |
否 |
String |
Body |
部門編號(hào),默認(rèn)為根部門。 長(zhǎng)度:1-32。 |
prjCodeMode |
否 |
String |
Body |
投影碼生成模式,默認(rèn)為自動(dòng)。
|
phone |
否 |
String |
Body |
手機(jī)號(hào),必須加上國(guó)家碼,例如中國(guó)大陸手機(jī)為“+86xxxxxxxxxxx”。當(dāng)填寫手機(jī)號(hào)時(shí) “country”參數(shù)必填。 手機(jī)號(hào)只允許輸入純數(shù)字。 長(zhǎng)度:0-32。
說(shuō)明:
手機(jī)號(hào)或者郵箱至少填寫一個(gè)。 |
country |
否 |
String |
Body |
默認(rèn)值:chinaPR。 長(zhǎng)度:0-255。 |
|
否 |
String |
Body |
統(tǒng)一郵箱格式。 長(zhǎng)度:0-255。 |
description |
否 |
String |
Body |
終端描述。 長(zhǎng)度:0-128。 |
status |
否 |
Integer |
Body |
終端狀態(tài)。
默認(rèn)值:0。 |
sendNotify |
否 |
String |
Body |
是否發(fā)送郵件和短信通知。
長(zhǎng)度:0-32。 |
參數(shù) |
類型 |
描述 |
---|---|---|
returnCode |
String |
業(yè)務(wù)返回碼。 |
returnMessage |
String |
返回描述。 |
achievementTime |
String |
響應(yīng)產(chǎn)生時(shí)間。 |
requestId |
String |
請(qǐng)求唯一標(biāo)識(shí)。 |
data |
String |
返回終端SN碼。 |
POST /rest/usg/datacenter/v1/corp/device Connection: keep-alive Authorization: Basic ZFZzaWpIank3RVBWWElaZm00Y1BtVFFvbzBRMXc2bnBY Content-Type: application/json Content-Length: 155 Host: api.meeting.huaweicloud.com User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_191) { "model": "DP300", "name": "test5", "deptCode": "1", "phone": "+86136********", "email": "test5@huawei.com", "sn": "asdasfscasd", "country": "chinaPR" }
HTTP/1.1 200 Date: Tue, 16 Apr 2019 09:22:44 GMT Content-Type: application/json;charset=UTF-8 Content-Length: 164 Connection: keep-alive Pragma: No-cache Cache-Control: no-cache Expires: Thu, 01 Jan 1970 00:00:00 GMT Server: api-gateway X-Request-Id: 65c132ec8939a66775df1382e7d35fc9 { "returnCode": "000000000", "returnMessage": "Success", "achievementTime": "2019-04-16 09:21:25.115 UTC", "requestId": "e8466aa24cf5d299cecc161ceb2dc4af", "data": { "name": "test52", "type": "TE", "model": "DP300", "sn": "asdasfscaas", "account": "013e65319ab24d9586777114a40441eb", "number": "+991116003902", "prjCodeMode": null, "deptCode": "1", "deptName": "chen001", "deptNamePath": "chen001", "phone": null, "country": "chinaPR", "email": "test5@huawei.com", "description": null, "status": 0 } }
curl -k -i -H 'content-type: application/json' -X POST -H 'Authorization: Basic T3IxeXdMUGwzeU9Gb3JnWENNWWZldnBHM0JTQVA5N2FS' -d '{"model": "DP300","name": "test5","deptCode": "1","phone": "+86136********","email": "test5@huawei.com","sn": "asdasfscasd","country": "chinaPR"}' https://api.meeting.huaweicloud.com/rest/usg/datacenter/v1/corp/device