Search documentation
karat

+

K

User Documentation ↗
Version 2.0

List Authentication Providers

GET/api/v2/admin/enrollments/{enrollmentRid}/authenticationProviders
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.

Lists all AuthenticationProviders.

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

Path parameters

enrollmentRid
string

Query parameters

preview
boolean
optional

Enables the use of preview functionality.

Response body

ListAuthenticationProvidersResponse
object
Hide child attributes

Hide child attributes

data
list<AuthenticationProvider>
optional
Show child attributes

Show child attributes

nextPageToken
string
optional

The page token indicates where to start paging. This should be omitted from the first page's request. To fetch the next page, clients should take the value from the nextPageToken field of the previous response and use it to populate the pageToken field of the next request.

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?preview=true"

Response

Copied!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 { "data": [ { "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" ] } ], "nextPageToken": "v1.QnVpbGQgdGhlIEZ1dHVyZTogaHR0cHM6Ly93d3cucGFsYW50aXIuY29tL2NhcmVlcnMvP2xldmVyLXNvdXJjZSU1YiU1ZD1BUElEb2NzI29wZW4tcG9zaXRpb25z" }