Management API
cURL
curl --request GET \ --url https://{tenantDomain}/api/v2/connection-profiles/templates/{id} \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "display_name": "<string>", "template": { "name": "<string>", "organization": { "show_as_button": "none", "assign_membership_on_login": "none" }, "connection_name_prefix_template": "<string>", "enabled_features": [ "scim" ], "connection_config": {}, "strategy_overrides": { "pingfederate": { "enabled_features": [ "scim" ], "connection_config": {} }, "ad": { "enabled_features": [ "scim" ], "connection_config": {} }, "adfs": { "enabled_features": [ "scim" ], "connection_config": {} }, "waad": { "enabled_features": [ "scim" ], "connection_config": {} }, "google-apps": { "enabled_features": [ "scim" ], "connection_config": {} }, "okta": { "enabled_features": [ "scim" ], "connection_config": {} }, "oidc": { "enabled_features": [ "scim" ], "connection_config": {} }, "samlp": { "enabled_features": [ "scim" ], "connection_config": {} } } } }
Retrieve a Connection Profile Template.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of the connection-profile-template to retrieve.
Connection 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 Connection Profile.
Show child attributes