> For the complete documentation index, see [llms.txt](https://rest-api.symphony.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://rest-api.symphony.com/main/sso/get-sso.md).

# Get SSO

## GET /v1/admin/sso/configuration

> Get the SSO configuration of the company (pod)

```json
{"openapi":"3.1.1","info":{"title":"Pod API","version":"20.17.1"},"servers":[{"url":"http://yourpodURL.symphony.com/pod"}],"paths":{"/v1/admin/sso/configuration":{"get":{"summary":"Get the SSO configuration of the company (pod)","parameters":[{"schema":{"type":"string"},"name":"sessionToken","description":"Session authentication token.","in":"header","required":true}],"tags":["SsoConfiguration"],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SsoConfiguration"}}}},"400":{"description":"Client error, see response body for further details.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Session tokens invalid.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"403":{"description":"Forbidden: Caller lacks necessary entitlement.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"The SSO configuration does not exist and could not be initialized.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"Server error, see response body for further details.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}},"components":{"schemas":{"SsoConfiguration":{"type":"object","properties":{"ssoEnabled":{"description":"Whether SSO authentication is enabled for the pod.","type":"boolean"},"idpEntityId":{"description":"Entity id of the identity provider.","type":"string"},"idpSsoEndpoint":{"description":"Url the user is redirected to in order to authenticate.","type":"string"},"idpSigningCertificate":{"description":"PEM encoded certificate used to verify the identity provider's assertions.","type":"string"},"symphonyAcsUrl":{"description":"Assertion consumer service url the identity provider posts back to. Derived from the pod's base url when the configuration has not been created yet.\n","type":"string"},"symphonyEntityId":{"description":"Entity id Symphony identifies itself with. Derived from the pod's base url when the configuration has not been created yet.\n","type":"string"},"forceAuthn":{"description":"Whether to force users to re-authenticate with the Identity Provider during SSO, even if they have an existing active session.","type":"boolean"}}},"Error":{"type":"object","properties":{"code":{"type":"integer","format":"int32"},"message":{"type":"string"}}}}}}
```
