Skip to main content
GET
/
sso_profiles
List all SSO profiles
curl --request GET \
  --url http://localhost:3001/portal-api/sso_profiles \
  --header 'Authorization: <api-key>'
[
  [
    {
      "ID": "ldap_dev",
      "Name": "Developers@LocalAD",
      "ActionType": "GenerateOrLoginDeveloperProfile",
      "LoginURL": "http://localhost:3001/tib/auth/ldap_dev/ldap",
      "RedirectURL": "http://localhost:3001/tib/auth/ldap_dev/ldap/callback",
      "SelectedProviderType": "ldap",
      "UpdatedAt": "2024-11-14 12:36",
      "UpdatedBy": "[email protected]"
    }
  ]
]

Authorizations

Authorization
string
header
required

Response

200 - application/json

OK

ID
string

Unique identifier/key for the SSO profile

Example:

"ldap_dev"

Name
string

Name of the SSO profile

Example:

"Developers@LocalAD"

ActionType
string

Type of action to perform

Example:

"GenerateOrLoginDeveloperProfile"

LoginURL
string

URL for SSO login

Example:

"http://localhost:3001/tib/auth/ldap_dev/ldap"

RedirectURL
string

Callback URL for SSO authentication

Example:

"http://localhost:3001/tib/auth/ldap_dev/ldap/callback"

SelectedProviderType
string

Type of the selected provider

Example:

"ldap"

UpdatedAt
string

Timestamp of when this profile was last updated

Example:

"2024-11-14 12:36"

UpdatedBy
string

Email of the user who last updated this profile