Management API
cURL
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": {} } }
Retrieve a User Attribute Profile Template.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of the user-attribute-profile-template to retrieve.
User Attribute Profile Template successfully retrieved.
The id of the template.
The user-friendly name of the template displayed in the UI.
The structure of the template, which can be used as the payload for creating or updating a User Attribute Profile.
Show child attributes