更新時間:2019-11-20
企業(yè)管理員通過該接口添加企業(yè)用戶。
請求方法 |
POST |
---|---|
請求地址 |
/rest/usg/datacenter/v1/corp/member |
傳輸協(xié)議 |
HTTPS |
參數(shù) |
是否必須 |
類型 |
位置 |
描述 |
---|---|---|---|---|
Authorization |
是 |
String |
Header |
授權(quán)令牌。將執(zhí)行鑒權(quán)響應的accessToken進行Base64轉(zhuǎn)碼操作。 樣例:Basic Base64(accessToken) |
id |
否 |
String |
Body |
企業(yè)用戶的唯一標識,若不輸入,后臺生成uuid。 長度:0-64位。 |
name |
是 |
String |
Body |
企業(yè)用戶姓名。 長度:1-64位。 |
englishName |
否 |
String |
Body |
企業(yè)用戶的英文姓名。 長度:0-64位。 |
account |
否 |
String |
Body |
企業(yè)用戶帳號,若攜帶則以攜帶為準,否則后臺自動生成。 帳號只能包含大小寫字母、數(shù)字、_、-、.、@符號,不能為純數(shù)字和@后面帶.號。 長度:0-64位。 |
phone |
否 |
String |
Body |
手機號,必須加上國家碼。 例如中國大陸手機為“+86xxxxxxxxxxx”。當填寫手機號時 “country”參數(shù)必填。 手機號只允許輸入純數(shù)字。 說明:手機號或者郵箱至少填寫一個。 長度:0-32位。 |
country |
否 |
String |
Body |
默認值:chinaPR。 長度:0-255位。 |
pwd |
否 |
String |
Body |
企業(yè)用戶帳號的密碼。若攜帶則實際攜帶為準,否則后臺默認生成。 |
|
否 |
String |
Body |
郵箱。 長度:0-255位。 |
vmrId |
否 |
String |
Body |
虛擬會議室ID,若不攜帶則后臺默認生成。 長度:0-32位。 |
deptCode |
否 |
String |
Body |
部門編號,若不攜帶則默認根部門。 默認值:1 長度:0-32位。 |
signature |
否 |
String |
Body |
簽名。 長度:0-128位。 |
status |
否 |
Integer |
Body |
用戶狀態(tài)。
默認值:0 |
function |
否 |
Body |
用戶功能位。 |
|
sendNotify |
否 |
String |
Body |
是否發(fā)送郵件和短信通知。
|
sortLevel |
否 |
Integer |
Body |
通訊錄排序等級,序號越低優(yōu)先級越高。 默認值:10000 范圍:1-10000。 |
hidePhone |
否 |
Boolean |
Body |
是否隱藏手機號碼。 默認值:false |
參數(shù) |
類型 |
描述 |
---|---|---|
returnCode |
String |
業(yè)務返回碼。 |
returnMessage |
String |
返回描述。 |
achievementTime |
String |
響應產(chǎn)生時間。 |
requestId |
String |
請求唯一標識。 |
data |
查詢用戶的返回結(jié)果。 |
POST /rest/usg/datacenter/v1/corp/member Connection: keep-alive Content-Type: application/json Authorization: Basic UnhsbTBjNUdOWU9jZlUwbWQxcU82Y1QwZndOSDhOblNz Content-Length: 173 Host: api.meeting.huaweicloud.com User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_191) { "account": "test010", "country": "chinaPR", "deptCode": "1", "email": "test010@huawei.com", "name": "test010", "phone": "+86136********", "pwd": "*********" }
HTTP/1.1 200 Date: Fri, 12 Apr 2019 08:00:18 GMT Content-Type: application/json;charset=UTF-8 Content-Length: 160 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: ebbb9b1e50d1ec63b78d8484d170173f { "returnCode": "000000000", "returnMessage": "Success", "achievementTime": "2019-04-12 07:59:06.617", "requestId": "ebbb9b1e50d1ec63b78d8484d170173f", "data": { "id": "ff8080816a52c253016a630b31e40196", "userAccount": "test010", "name": "test010", "phone": "+861368********", "country": "chinaPR", "email": null, "sipNum": "+86571100252", "vmrList": [ { "id": "ff8080816a52c253016a630b31ed0198", "vmrId": "912922171", "vmrName": "test010's meeting room", "vmrPkgId": null, "vmrPkgName": null, "vmrPkgParties": null, "status": 0 }], "deptCode": "1", "deptName": "test002", "deptNamePath": "test002", "userType": 2, "adminType": 2, "signature": null, "corp": null, "status": 0 } }
curl -k -i -H 'content-type: application/json' -X POST -H 'Authorization: Basic VUVwVU82SWFISU0ySWlKaEdoRllRUXk0MUZnbk00Mkpk' -d '{"account": "test010","country": "chinaPR","deptCode": "1","email": "test010@huawei.com","name": "test010","phone": "+86136********","pwd": "********"}' https://api.meeting.huaweicloud.com/rest/usg/datacenter/v1/corp/member