Get Started
API backend
API system
More information

GET api/2.0/settings/ssov2/default This function requires authentication

Description

Returns the default portal SSO settings.

Parameters

This method doesn't have any parameters.

Example
GET api/2.0/settings/ssov2/default
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

Default SSO settings

Example Response

application/json

{
  "status": 0,
  "response": {
    "EnableSso": true,
    "IdpSettings": {
      "EntityId": "some text",
      "SsoUrl": "some text",
      "SsoBinding": "some text",
      "SloUrl": "some text",
      "SloBinding": "some text",
      "NameIdFormat": "some text"
    },
    "IdpCertificateAdvanced": {
      "VerifyAlgorithm": "some text",
      "VerifyAuthResponsesSign": true,
      "VerifyLogoutRequestsSign": true,
      "VerifyLogoutResponsesSign": true,
      "DecryptAlgorithm": "some text",
      "DecryptAssertions": true
    },
    "SpLoginLabel": "some text",
    "SpCertificateAdvanced": {
      "SigningAlgorithm": "some text",
      "SignAuthRequests": true,
      "SignLogoutRequests": true,
      "SignLogoutResponses": true,
      "EncryptAlgorithm": "some text",
      "DecryptAlgorithm": "some text",
      "EncryptAssertions": true
    },
    "HideAuthPage": true
  }
}

text/xml

<result>
  <status>0</status>
  <response>
    <EnableSso>True</EnableSso>
    <IdpSettings>
      <EntityId>some text</EntityId>
      <SsoUrl>some text</SsoUrl>
      <SsoBinding>some text</SsoBinding>
      <SloUrl>some text</SloUrl>
      <SloBinding>some text</SloBinding>
      <NameIdFormat>some text</NameIdFormat>
    </IdpSettings>
    <IdpCertificateAdvanced>
      <VerifyAlgorithm>some text</VerifyAlgorithm>
      <VerifyAuthResponsesSign>True</VerifyAuthResponsesSign>
      <VerifyLogoutRequestsSign>True</VerifyLogoutRequestsSign>
      <VerifyLogoutResponsesSign>True</VerifyLogoutResponsesSign>
      <DecryptAlgorithm>some text</DecryptAlgorithm>
      <DecryptAssertions>True</DecryptAssertions>
    </IdpCertificateAdvanced>
    <SpLoginLabel>some text</SpLoginLabel>
    <SpCertificateAdvanced>
      <SigningAlgorithm>some text</SigningAlgorithm>
      <SignAuthRequests>True</SignAuthRequests>
      <SignLogoutRequests>True</SignLogoutRequests>
      <SignLogoutResponses>True</SignLogoutResponses>
      <EncryptAlgorithm>some text</EncryptAlgorithm>
      <DecryptAlgorithm>some text</DecryptAlgorithm>
      <EncryptAssertions>True</EncryptAssertions>
    </SpCertificateAdvanced>
    <HideAuthPage>True</HideAuthPage>
  </response>
</result>