List workspace SSO configurations
curl --request GET \
--url https://app.hookie.ai/admin/api/sso \
--cookie hookie_session=const options = {method: 'GET', headers: {cookie: 'hookie_session='}};
fetch('https://app.hookie.ai/admin/api/sso', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.hookie.ai/admin/api/sso"
headers = {"cookie": "hookie_session="}
response = requests.get(url, headers=headers)
print(response.text){
"sso_configs": [
{
"id": "<string>",
"provider": "saml",
"enabled": 0,
"idp_entity_id": "<string>",
"idp_sso_url": "<string>",
"acs_url": "<string>",
"allowed_domains": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
]
}{
"error": "<string>",
"retry_after": 123,
"upgrade_url": "<string>"
}{
"error": "<string>",
"retry_after": 123,
"upgrade_url": "<string>"
}{
"error": "<string>",
"retry_after": 123,
"upgrade_url": "<string>"
}{
"error": "<string>",
"retry_after": 123,
"upgrade_url": "<string>"
}SSO
List workspace SSO configurations
GET
/
admin
/
api
/
sso
List workspace SSO configurations
curl --request GET \
--url https://app.hookie.ai/admin/api/sso \
--cookie hookie_session=const options = {method: 'GET', headers: {cookie: 'hookie_session='}};
fetch('https://app.hookie.ai/admin/api/sso', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.hookie.ai/admin/api/sso"
headers = {"cookie": "hookie_session="}
response = requests.get(url, headers=headers)
print(response.text){
"sso_configs": [
{
"id": "<string>",
"provider": "saml",
"enabled": 0,
"idp_entity_id": "<string>",
"idp_sso_url": "<string>",
"acs_url": "<string>",
"allowed_domains": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
]
}{
"error": "<string>",
"retry_after": 123,
"upgrade_url": "<string>"
}{
"error": "<string>",
"retry_after": 123,
"upgrade_url": "<string>"
}{
"error": "<string>",
"retry_after": 123,
"upgrade_url": "<string>"
}{
"error": "<string>",
"retry_after": 123,
"upgrade_url": "<string>"
}Authorizations
sessionbearerAuth
The console's sealed session cookie, set by WorkOS AuthKit. Mutating requests also require the X-Requested-With CSRF header.
Response
Configs, newest first. idp_certificate is deliberately NOT selected, even though it is a public certificate.
Show child attributes
Show child attributes