Validates that the provided values will work (as best Wayfinder can tell) to integrate with the specified IDP, without reconfiguring the system
POST/api/v2/idpconfig/verify
Validates that the provided values will work (as best Wayfinder can tell) to integrate with the specified IDP, without reconfiguring the system
Request
Query Parameters
redirect_url stringrequired
URL to redirect to if the IDP configuration is valid
- application/json
Body
required
IDP configuration to test
allowedRedirectURLHosts string[]
clientID string
clientScopes string[]
clientSecret string
provider string
providerParameters
object
property name* string
requiredIDPGroups string[]
serverURL string
userClaims string[]
Responses
- 200
- 400
- 401
- 403
- 500
Validation report about the IDP configuration
- application/json
- Schema
- Example (from schema)
Schema
messages string[]
success booleanrequired
testURL string
{
"messages": [
"string"
],
"success": true,
"testURL": "string"
}
Validation error of supplied parameters/body
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
code int32required
fieldErrors
undefined[]
required
errCode stringrequired
field stringrequired
message stringrequired
message stringrequired
{
"code": 0,
"fieldErrors": [
{
"errCode": "string",
"field": "string",
"message": "string"
}
],
"message": "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...