【自定义映射规则】添加一个映射配置¶
POST /api/v1/login_mapping/field/add
概述¶
Body 请求参数¶
参数名 | 类型 | 必选 | 说明 |
---|---|---|---|
sourceField | string | Y | 源字段 例子: sourceField 允许为空: False 最大长度: 256 |
sourceValue | string | Y | 源字段值 例子: 允许为空: False 最大长度: 256 |
targetValues | array | Y | 目标字段值(目前默认为 角色的UUID 值列表) 例子: readOnly |
参数补充说明¶
请求例子¶
curl 'https://openapi.guance.com/api/v1/login_mapping/field/add' \
-H 'Content-Type: application/json;charset=UTF-8' \
-H 'DF-API-KEY: <DF-API-KEY>' \
--data-raw '{"sourceField":"name","sourceValue":"lisa","targetValues":["wsAdmin","role_xxxx32"]}' \
--compressed
响应¶
{
"code": 200,
"content": {
"createAt": 1697427020,
"creator": "mact_xxxx22",
"deleteAt": -1,
"id": null,
"isSystem": true,
"sourceField": "name",
"sourceValue": "lisa",
"status": 0,
"targetValues": [
"wsAdmin",
"role_xxxxxxxx"
],
"updateAt": 1697427020,
"updator": "mact_xxxxxx",
"uuid": "lgmp_xxxxxxxxxxxxxx",
"workspaceUUID": "wksp_bb191037aa7exxxxxxx"
},
"errorCode": "",
"message": "",
"success": true,
"traceId": "12119540197801491096"
}