Get Identity Servers
Get identity servers list
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
identityServers object[]
Identity servers list
id int32Identity server id
name stringIdentity server name
type stringPossible values: [
SAML,ACTIVE_DIRECTORY,APPLE_DIRECTORY_SERVICE,ORACLE_DIRECTORY,OPEN_LDAP,LDAP_SERVER,OTHER]Identity server service type in Enum string
samlType stringPossible values: [
UNKNOWN,AZURE,ADFS,OKTA]Name of the IdP. Available only if type is SAML.
company object
id int32name stringconfigured booleanBoolean to indicate whether Identity server is configured.
{
"identityServers": [
{
"id": 0,
"name": "string",
"type": "SAML",
"samlType": "UNKNOWN",
"company": {
"id": 0,
"name": "string"
},
"configured": true
}
]
}
Loading...