【自定义映射规则】修改一个映射配置¶
POST /api/v1/login_mapping/field/{lgmp_uuid}/modify
概述¶
路由参数¶
参数名 | 类型 | 必选 | 说明 |
---|---|---|---|
lgmp_uuid | string | Y | 映射配置id |
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/lgmp_xxxx32/modify' \
-H 'Content-Type: application/json;charset=UTF-8' \
-H 'DF-API-KEY: <DF-API-KEY>' \
--data-raw '{"sourceField":"name","sourceValue":"lisa-new","targetValues":["wsAdmin"]}' \
--compressed