Save the SSO settings
POST /api/2.0/settings/ssov2
Request
Saves the SSO settings for the current portal.
Authorization
An API key is a token that you provide when making API calls. Include the token in a header parameter called Authorization
.
Example: Authorization: 864FE52C-1C1C-469F-9308-51DAFEFE7436
.
Headers
- Accept
enum of string
Can be one of:
application/json
.- Content-Type
enum of string
Can be one of:
application/json
.
Body
- serializeSettings
string
Serialized SSO settings
Examples
POST /api/2.0/settings/ssov2 HTTP/1.1
Accept: application/json
Content-Type: application/json
Host: example.com
curl --request POST \
--url https://example.com/api/2.0/settings/ssov2 \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'
Responses
200
SSO settings
- EnableSso
boolean
- IdpSettings
object
- EntityId
string
- SsoUrl
string
- SsoBinding
string
- SloUrl
string
- SloBinding
string
- NameIdFormat
string
- IdpCertificates
array of object
- SelfSigned
boolean
- Crt
string
- Key
string
- Action
string
- DomainName
string
- StartDate
string
date-time - ExpiredDate
string
date-time
- IdpCertificateAdvanced
object
- VerifyAlgorithm
string
- VerifyAuthResponsesSign
boolean
- VerifyLogoutRequestsSign
boolean
- VerifyLogoutResponsesSign
boolean
- DecryptAlgorithm
string
- DecryptAssertions
boolean
- SpLoginLabel
string
- SpCertificates
array of object
- SelfSigned
boolean
- Crt
string
- Key
string
- Action
string
- DomainName
string
- StartDate
string
date-time - ExpiredDate
string
date-time
- SpCertificateAdvanced
object
- SigningAlgorithm
string
- SignAuthRequests
boolean
- SignLogoutRequests
boolean
- SignLogoutResponses
boolean
- EncryptAlgorithm
string
- DecryptAlgorithm
string
- EncryptAssertions
boolean
- FieldMapping
object
- FirstName
string
- LastName
string
- Email
string
- Title
string
- Location
string
- Phone
string
- HideAuthPage
boolean
401
Unauthorized