Commits the last verified IDP configuration as the live IDP configuration
POSThttps://api.wayfinder.appvia.local/api/v2/idpconfig/commit
Commits the last verified IDP configuration as the live IDP configuration
Request
- application/json
Body
required
No body required, anything provided will be disregarded
allowedRedirectURLHosts string[]
clientID string
clientScopes string[]
clientSecret string
provider string
providerParameters
object
requiredIDPGroups string[]
serverURL string
userClaims string[]
Responses
- 200
- 400
- 401
- 403
- 500
IDP configuration updated
Validation error of supplied parameters/body
- application/json
- Schema
- Example (from schema)
Schema
code int32required
fieldErrors
undefined[]
required
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"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://api.wayfinder.appvia.local/api/v2/idpconfig/commit' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-d '{
"allowedRedirectURLHosts": [
"string"
],
"clientID": "string",
"clientScopes": [
"string"
],
"clientSecret": "string",
"provider": "string",
"providerParameters": {},
"requiredIDPGroups": [
"string"
],
"serverURL": "string",
"userClaims": [
"string"
]
}'
ResponseClear