Returns the current IDP configuration
GET/api/v2/idpconfig
Returns the current IDP configuration
Request
Query Parameters
test string
If true, the current test configuration will be returned instead of the live configuration
Responses
- 200
- 401
- 403
- 500
Current IDP configuration
- application/json
- Schema
- Example (from schema)
Schema
allowedRedirectURLHosts string[]
clientID string
clientScopes string[]
clientSecret string
provider string
providerParameters
object
property name* string
requiredIDPGroups string[]
serverURL string
userClaims string[]
{
"allowedRedirectURLHosts": [
"string"
],
"clientID": "string",
"clientScopes": [
"string"
],
"clientSecret": "string",
"provider": "string",
"providerParameters": {},
"requiredIDPGroups": [
"string"
],
"serverURL": "string",
"userClaims": [
"string"
]
}
If not authenticated
If authenticated but not authorized
A generic API error containing the cause of the error
- application/json
- Schema
- Example (from schema)
Schema
code int32required
detail stringrequired
message stringrequired
uri stringrequired
verb stringrequired
{
"code": 0,
"detail": "string",
"message": "string",
"uri": "string",
"verb": "string"
}
Loading...