【Login Mapping】修改一个映射配置¶
POST /api/v1/login_mapping/field/{lgmp_uuid}/modify
概述¶
路由参数¶
参数名 | 类型 | 必选 | 说明 |
---|---|---|---|
lgmp_uuid | string | Y | 映射配置id |
Body 请求参数¶
参数名 | 类型 | 必选 | 说明 |
---|---|---|---|
workspaceUUID | string | 工作空间UUID 例子: 工作空间UUID 允许为空: False |
|
sourceField | string | Y | 源字段 例子: sourceField 允许为空: False 最大长度: 40 |
sourceValue | string | Y | 源字段值 例子: 允许为空: False 最大长度: 40 |
targetValues | array | Y | 目标字段值(目前默认为 角色的UUID 值) 例子: ['readOnly'] |
参数补充说明¶
请求例子¶
curl '<Endpoint>/api/v1/login_mapping/field/lgmp_xxxxx/modify' \
-X 'POST' \
-H 'Content-Type: application/json' \
-H 'X-Df-Access-Key: <AK key>' \
-H 'X-Df-Nonce: <随机字符>' \
-H 'X-Df-Signature: <签名>' \
-H 'X-Df-Timestamp: <时间戳>' \
--data-raw $'{ "workspaceUUID": "wksp_xxxx", "sourceField": "email2", "sourceValue": "xxx@qq.com", "targetValues": ["readOnly" ]}'