Skip to content

Get SAML Mapping List



GET /api/v1/saml/mapping/field/list

Overview

Get the list of SAML mappings

Query Request Parameters

Parameter Name Type Required Description
ssoUUID string No Filter identity provider by SSO configuration UUID
Example: sso_xxx
Can be empty: False
Maximum length: 48
search string No Search, defaults to searching role name, source field name, and source field value
Example: supper_workspace
Can be empty: False
pageIndex integer No Page number
Can be empty: False
Example: 10
$minValue: 1
pageSize integer No Number of items per page
Can be empty: False
Example: 10
$minValue: 1
$maxValue: 100

Additional Parameter Notes

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"
} 

Feedback

Is this page helpful? ×