Tenant SAML info
GET
/saml/{tenant}/info
const url = 'https://auth.timetonic.com/api/saml/example/info';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://auth.timetonic.com/api/saml/example/infoGet tenant SAML configuration info
Parameters
Section intitulée « Parameters »Path Parameters
Section intitulée « Path Parameters »tenant
required
string
SAML tenant identifier
Responses
Section intitulée « Responses »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"}