Search documentation
karat

+

K

User Documentation ↗
Version 2.0

Get Authentication Provider

GET/api/v2/admin/enrollments/{enrollmentRid}/authenticationProviders/{authenticationProviderRid}
Warning

This endpoint is in preview and may be modified or removed at any time. To use this endpoint, add preview=true to the request query parameters.

Get the AuthenticationProvider with the specified rid.

Third-party applications using this endpoint via OAuth2 must request the following operation scope: api:admin-read.

Path parameters

enrollmentRid
string
authenticationProviderRid
string

Query parameters

preview
boolean
optional

Enables the use of preview functionality.

Response body

AuthenticationProvider
object
Hide child attributes

Hide child attributes

rid
string
name
string
realm
string

Identifies which Realm a User or Group is a member of. The palantir-internal-realm is used for Users or Groups that are created in Foundry by administrators and not associated with any SSO provider.

enabled
boolean

Whether users can log in using this provider.

supportedHosts
list<HostName>
optional

This provider can only be utilized from these hosts.

Show child attributes

Show child attributes

supportedUsernamePatterns
list<string>
optional

Users who enter usernames that match these patterns will be redirected to this authentication provider.

protocol
union
Show child attributes

Show child attributes

Examples

Request

Copied!
1 2 3 curl \ -H "Authorization: Bearer $TOKEN" \ "https://$HOSTNAME/api/v2/admin/enrollments/ri.control-panel.main.customer.466f812b-f974-4478-9d4f-90402cd3def6/authenticationProviders/ri.control-panel.main.saml.3faf689c-eaa1-4137-851f-81d58afe4c86?preview=true"

Response

Copied!
1 2 3 4 5 6 7 8 9 10 11 12 13 { "supportedHosts": [ "example.palantirfoundry.com" ], "name": "Example SAML Provider", "realm": "1bd3813a-ef8b-4211-bfbd-8b6485d0eb83", "rid": "ri.control-panel.main.saml.3faf689c-eaa1-4137-851f-81d58afe4c86", "enabled": true, "supportedUsernamePatterns": [ ".*@example.com", ".*@palantir.com" ] }

Error responses

Error Name
AuthenticationProviderNotFoundError CodeNOT_FOUND
Status Code404
DescriptionThe given AuthenticationProvider could not be found.
ParametersenrollmentRid, authenticationProviderRid