Skip to main content
GET
/
api
/
identity-providers
/
{alias}
Get identity provider details
curl --request GET \
  --url https://api.example.com/api/identity-providers/{alias} \
  --header 'Authorization: Bearer <token>'
{
  "alias": "<string>",
  "display_name": "<string>",
  "provider_id": "<string>",
  "enabled": true,
  "internal_id": "<string>",
  "known_provider": "<string>",
  "config": {},
  "mapper_count": 0,
  "mappers": [
    {
      "name": "<string>",
      "identity_provider_mapper": "<string>",
      "id": "<string>",
      "config": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

alias
string
required

Response

Identity provider with mappers

Detailed response including mappers.

alias
string
required
display_name
string
required
provider_id
string
required
enabled
boolean
required
internal_id
string | null
known_provider
string | null
config
Config · object

Provider configuration (secrets masked)

mapper_count
integer
default:0

Number of configured mappers

mappers
IdpMapperConfig · object[]