通过用户ID查询用户名称¶
通过以下步骤查询团队用户名称
该接口可通过用户ID返回团队内用户名称的信息
示例¶
请求cURl:
curl --location --request POST 'https://caweb.aiops.com/api/alert/rest/api/v1/userInfo' \ --user 'email@example.com:<access_token>' \ --header 'Content-Type: application/json' \ -d '{ "userId":"****,****" }'
示例邮箱应替换为用户注册所用邮箱
access_token应替换为您手动获取的access_token
access_token如何获取请参考文档 api令牌
提示
• 如需对请求进行加密处理:请将
--user 'email@example.com:access_token' \
--header 'Accept: application/json'
替换为:
--header 'Authorization: Basic Z2FveWluaW5nOTk5NUAxNjMuY29tOmt1WWl6bmljZ3oxN0JBVjk=' \
--header 'Content-Type: application/json'
• 替换步骤请参考加密步骤
请求参数¶
参数 | 类型 | 是否必须 | 说明 |
---|---|---|---|
userId | string | 必须 | 用户ID多个用户ID用,隔开 |
返回参数¶
参数 | 类型 | 说明 |
---|---|---|
result | string | 返回结果:success成功 、false 失败 |
id | string | 用户ID |
cantactName | string | 用户联络名称 |
code | int | 响应码 |
data结果集¶
参数 | 类型 | 说明 |
---|---|---|
cantactName | string | 用户联络名称 |
id | string | 用户 id |
返回示例
{ "result":"success", "message":"ok", "data":[ { "contactName":"***", "id":"****" }, { "contactName":"***", "id":"****" } ], "totalCount":2, "code":200 }
200:成功
400:失败,传入的参数有问题
401:认证失败,用户名密码错误