Get SAML Mapping List¶
GET /api/v1/saml/mapping/field/list
Overview¶
Get SAML mapping list
Query Parameters¶
| Parameter Name | Type | Required | Description | 
|---|---|---|---|
| ssoUUID | string | Filter identity provider, sso configuration UUID Example: sso_xxx Allow empty: False Max length: 48 | |
| search | string | Search, default search role name, source field name and source field value Example: supper_workspace Allow empty: False | |
| pageIndex | integer | Page number Allow empty: False Example: 10 $minValue: 1 | |
| pageSize | integer | Number of items per page Allow empty: False Example: 10 $minValue: 1 $maxValue: 100 | 
Additional Parameter Description¶
Request Example¶
curl 'https://openapi.guance.com/api/v1/saml/mapping/field/list' \
-H 'DF-API-KEY: <DF-API-KEY>' \
--compressed 
Response¶
{
    "code": 200,
    "content": [
        {
            "createAt": 1677826771,
            "creator": "acnt_xxxx32",
            "deleteAt": -1,
            "id": 66,
            "roleInfo": {
                "name": "Administrator",
                "uuid": "wsAdmin"
            },
            "sourceField": "QQ",
            "sourceValue": "qq",
            "status": 0,
            "targetValue": "wsAdmin",
            "updateAt": 1677827772,
            "updator": "acnt_xxxx32",
            "uuid": "fdmp_xxxx32",
            "workspaceUUID": "wksp_xxxx32"
        }
    ],
    "errorCode": "",
    "message": "",
    "pageInfo": {
        "count": 1,
        "pageIndex": 1,
        "pageSize": 10,
        "totalCount": 1
    },
    "success": true,
    "traceId": "TRACE-A9DB3123-FB6D-4595-9784-5A2B9C6C8439"
}