Authorizations
Response
200 - application/json
OK
The response is of type object[][]
.
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": "auto_test@tyk.io"
}
]
]
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": "auto_test@tyk.io"
}
]
]
OK
The response is of type object[][]
.
Was this page helpful?