新建映射规则¶
POST /api/v1/saml/mapping/field/add
概述¶
添加一个SAML映射
Body 请求参数¶
参数名 | 类型 | 必选 | 说明 |
---|---|---|---|
ssoUUID | string | Y | sso配置UUID 例子: sso_xxx 允许为空: False 最大长度: 48 |
sourceField | string | Y | 源字段 例子: sourceField 允许为空: False |
sourceValue | string | Y | 源字段值 例子: 允许为空: False |
targetValues | array | Y | 目标字段值(目前默认为 角色的UUID 值列表) 例子: readOnly |
参数补充说明¶
请求例子¶
curl 'https://openapi.guance.com/api/v1/saml/mapping/field/add' \
-H 'DF-API-KEY: <DF-API-KEY>' \
-H 'Content-Type: application/json;charset=UTF-8' \
--data-raw '{"ssoUUID":"sso_xxxx32","sourceField":"sd1","sourceValue":"sd1_value1","targetValues":["general"]}' \
--compressed