Aller au contenu

Tenant SAML info

GET
/saml/{tenant}/info
curl --request GET \
--url https://auth.timetonic.com/api/saml/example/info

Get tenant SAML configuration info

tenant
required
string

SAML tenant identifier

SAML configuration info

Media typeapplication/json
object
success
boolean
tenant
string
sp
object
entity_id
string
acs_url
string
sls_url
string
idp
object
entity_id
string
sso_url
string
Examplegenerated
{
"success": true,
"tenant": "example",
"sp": {
"entity_id": "example",
"acs_url": "example",
"sls_url": "example"
},
"idp": {
"entity_id": "example",
"sso_url": "example"
}
}

Resource not found

Media typeapplication/json
object
success
boolean
error
string
message
string
Example
{
"success": false,
"error": "not_found",
"message": "Resource not found"
}