主頁 > 服務(wù)與支持 > 開發(fā)平臺(tái) > 服務(wù)端API參考 > 用戶管理 修改用戶
更新時(shí)間:2019-11-20
企業(yè)管理員通過該接口修改企業(yè)用戶。
請求方法 |
PUT |
---|---|
請求地址 |
/rest/usg/datacenter/v1/corp/member/{account} |
傳輸協(xié)議 |
HTTPS |
參數(shù) |
是否必須 |
類型 |
位置 |
描述 |
---|---|---|---|---|
Authorization |
是 |
String |
Header |
授權(quán)令牌。將執(zhí)行鑒權(quán)響應(yīng)的accessToken 進(jìn)行Base64轉(zhuǎn)碼操作。 樣例:Basic Base64(accessToken) |
account |
是 |
String |
URL |
企業(yè)用戶帳號(hào)。 帳號(hào)只能包含大小寫字母、數(shù)字、_、-、.、@符號(hào),不能為純數(shù)字和@后面帶.號(hào)。 長度:0-64位。 |
name |
是 |
String |
Body |
名稱。 長度:1-64位。 |
phone |
否 |
String |
Body |
手機(jī)號(hào),必須加上國家碼,例如中國大陸手機(jī)+86xxxxxxxxxxx。當(dāng)填寫手機(jī)號(hào)時(shí) “country”參數(shù)必填。 手機(jī)號(hào)只允許輸入純數(shù)字。 說明:手機(jī)號(hào)或者郵箱至少填寫一個(gè)。 長度:0-32位。 |
country |
否 |
String |
Body |
默認(rèn)值:chinaPR。 長度:0-255位。 |
|
否 |
String |
Body |
郵箱。 長度:0-255位。 |
vmrId |
否 |
String |
Body |
虛擬會(huì)議室ID,若不攜帶則后臺(tái)默認(rèn)生成。 長度:0-32位。 |
deptCode |
否 |
String |
Body |
部門編號(hào),若不攜帶則默認(rèn)根部門。 默認(rèn)值:1 長度:0-32位。 |
signature |
否 |
String |
Body |
簽名。 長度:0-512位。 |
status |
否 |
Integer |
Body |
用戶狀態(tài)。
|
參數(shù) |
類型 |
描述 |
---|---|---|
returnCode |
String |
業(yè)務(wù)返回碼。 |
returnMessage |
String |
返回描述。 |
achievementTime |
String |
響應(yīng)產(chǎn)生時(shí)間。 |
requestId |
String |
請求唯一標(biāo)識(shí)。 |
PUT /rest/usg/datacenter/v1/corp/member/test001 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) { "country": "chinaPR", "deptCode": "1", "email": "test010@huawei.com", "name": "modify001", "phone": "+86136********", "signature":"", "status":0 }
HTTP/1.1 200 Date: Fri, 12 Apr 2019 09:41:02 GMT Content-Type: application/json;charset=UTF-8 Content-Length: 143 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: 26701eb8f982b175b70776316d46e33e { "returnCode": "000000000", "returnMessage": "Success", "achievementTime": "2019-04-12 09:39:50.805", "requestId": "26701eb8f982b175b70776316d46e33e" }
curl -k -i -H 'content-type: application/json' -X PUT -H 'Authorization: Basic VUVwVU82SWFISU0ySWlKaEdoRllRUXk0MUZnbk00Mkpk'' -d '{"country": "chinaPR","deptCode": "1","email": "test010@huawei.com","name": "modify001","phone": "+86136********","signature":"","status":0}' https://api.meeting.huaweicloud.com/rest/usg/datacenter/v1/corp/member/test001