- 开发集成
- /
- 标准 Web 应用
- /
- C#
- /
管理模块
- /
自定义字段管理
- /
- 获取用户、分组、角色、组织机构的自定义字段值
¶ 获取用户、分组、角色、组织机构的自定义字段值
更新时间: 2024-07-24 09:31:53
通过筛选条件,获取用户、分组、角色、组织机构的自定义字段值。
¶ 请求参数
名称 | 类型 | 必填 | 默认值 | 描述 | 示例值 |
---|---|---|---|---|---|
targetIdentifier | string | 是 | - | 目标对象唯一标志符。 | userId1 |
targetType | string | 是 | - | 主体类型,目前支持用户、角色、分组、部门。 枚举值:USER ,ROLE ,GROUP ,DEPARTMENT | USER |
namespace | string | 否 | - | 所属权限分组的 code,当 targetType 为角色的时候需要填写,否则可以忽略。 | default |
¶ 示例代码
using Authing.CSharp.SDK.Models;
using Authing.CSharp.SDK.Services;
using Authing.CSharp.SDK.Utils;
using Authing.CSharp.SDK.UtilsImpl;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace Example
{
class Program
{
private static ManagementClientOptions options;
private static string ACCESS_Key_ID = "AUTHING_USERPOOL_ID";
private static string ACCESS_KEY_SECRET = "AUTHING_USERPOOL_SECRET";
static void Main(string[] args)
{
MainAsync().GetAwaiter().GetResult();
}
private static async Task MainAsync()
{
options = new ManagementClientOptions()
{
AccessKeyId = ACCESS_Key_ID,
AccessKeySecret = ACCESS_KEY_SECRET,
};
ManagementClient managementClient = new ManagementClient(options);
GetCustomDataRespDto result = await managementClient.GetCustomData
(
targetIdentifier: "userId1",
targetType: "USER",
nameSpace: "default"
);
}
}
}
¶ 请求响应
类型: GetCustomDataRespDto
名称 | 类型 | 描述 |
---|---|---|
statusCode | number | 业务状态码,可以通过此状态码判断操作是否成功,200 表示成功。 |
message | string | 描述信息 |
apiCode | number | 细分错误码,可通过此错误码得到具体的错误类型。 |
data | object | 具体的自定义数据值 |
示例结果:
{
"statusCode": 200,
"message": "操作成功",
"apiCode": 20001,
"data": {
"age": 18,
"school": "pku"
}
}