Skip to main content
GET
/
user-attribute-profiles
/
templates
/
{id}
Get User Attribute Profile Template
curl --request GET \
  --url https://{tenantDomain}/api/v2/user-attribute-profiles/templates/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "display_name": "<string>",
  "template": {
    "name": "<string>",
    "user_id": {
      "oidc_mapping": "sub",
      "saml_mapping": [
        "<string>"
      ],
      "scim_mapping": "<string>",
      "strategy_overrides": {
        "pingfederate": {
          "oidc_mapping": "sub",
          "saml_mapping": [
            "<string>"
          ],
          "scim_mapping": "<string>"
        },
        "ad": {
          "oidc_mapping": "sub",
          "saml_mapping": [
            "<string>"
          ],
          "scim_mapping": "<string>"
        },
        "adfs": {
          "oidc_mapping": "sub",
          "saml_mapping": [
            "<string>"
          ],
          "scim_mapping": "<string>"
        },
        "waad": {
          "oidc_mapping": "sub",
          "saml_mapping": [
            "<string>"
          ],
          "scim_mapping": "<string>"
        },
        "google-apps": {
          "oidc_mapping": "sub",
          "saml_mapping": [
            "<string>"
          ],
          "scim_mapping": "<string>"
        },
        "okta": {
          "oidc_mapping": "sub",
          "saml_mapping": [
            "<string>"
          ],
          "scim_mapping": "<string>"
        },
        "oidc": {
          "oidc_mapping": "sub",
          "saml_mapping": [
            "<string>"
          ],
          "scim_mapping": "<string>"
        },
        "samlp": {
          "oidc_mapping": "sub",
          "saml_mapping": [
            "<string>"
          ],
          "scim_mapping": "<string>"
        }
      }
    },
    "user_attributes": {}
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

ID of the user-attribute-profile-template to retrieve.

Response

User Attribute Profile Template successfully retrieved.

id
string

The id of the template.

display_name
string

The user-friendly name of the template displayed in the UI.

template
object

The structure of the template, which can be used as the payload for creating or updating a User Attribute Profile.