GET https://api.ap1.datadoghq.com/api/v2/users/{user_id}/identity_providers https://api.ap2.datadoghq.com/api/v2/users/{user_id}/identity_providers https://api.datadoghq.eu/api/v2/users/{user_id}/identity_providers https://api.ddog-gov.com/api/v2/users/{user_id}/identity_providers https://api.us2.ddog-gov.com/api/v2/users/{user_id}/identity_providers https://api.uk1.datadoghq.com/api/v2/users/{user_id}/identity_providers https://api.datadoghq.com/api/v2/users/{user_id}/identity_providers https://api.us3.datadoghq.com/api/v2/users/{user_id}/identity_providers https://api.us5.datadoghq.com/api/v2/users/{user_id}/identity_providers
Overview Get the identity provider overrides for a specific user in the organization.
When a user has no overrides set, they use the organization’s default identity providers.
This endpoint requires the user_access_manage permission.
OAuth apps require the user_access_manage authorization scope to access this endpoint.
Arguments Path Parameters Response OK
Response containing a user’s identity provider overrides.
Expand All
List of user identity provider override data objects.
Attributes of an identity provider override for a user.
authentication_method [required ]
The authentication method used by this identity provider.
The unique identifier of the identity provider.
The resource type for identity providers.
Allowed enum values: identity_providers
{
"data" : [
{
"attributes" : {
"authentication_method" : "SAML"
},
"id" : "00000000-0000-0000-0000-000000000001" ,
"type" : "identity_providers"
}
]
} Authentication error
{
"errors" : [
"Bad Request"
]
} Not found
{
"errors" : [
"Bad Request"
]
} Too many requests
{
"errors" : [
"Bad Request"
]
} Code Example Copy
# Path parameters export user_id = "00000000-0000-9999-0000-000000000000" # Curl command curl -X GET "https://api.ap1.datadoghq.com "https://api.ap2.datadoghq.com "https://api.datadoghq.eu "https://api.ddog-gov.com "https://api.us2.ddog-gov.com "https://api.uk1.datadoghq.com "https://api.datadoghq.com "https://api.us3.datadoghq.com "https://api.us5.datadoghq.com /api/v2/users/${user_id}/identity_providers " \
-H "Accept: application/json" \
-H "DD-API-KEY: ${DD_API_KEY} " \
-H "DD-APPLICATION-KEY: ${DD_APP_KEY} "