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
.
object
string
string
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.
boolean
Whether users can log in using this provider.
list<HostName>
This provider can only be utilized from these hosts.
list<string>
Users who enter usernames that match these patterns will be redirected to this authentication provider.
union
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"
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 Name | ||
---|---|---|
Authentication | Error Code | NOT_FOUND |
Status Code | 404 | |
Description | The given AuthenticationProvider could not be found. | |
Parameters | enrollmentRid, authenticationProviderRid |
See Errors for a general overview of errors in the platform.