Single Logout Service
GET
/saml/{tenant}/sls
const url = 'https://auth.timetonic.com/api/saml/example/sls';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/slsSAML Single Logout endpoint
Parameters
Section intitulée « Parameters »Path Parameters
Section intitulée « Path Parameters »tenant
required
string
SAML tenant identifier
Responses
Section intitulée « Responses »Redirect after logout
Resource not found
Media typeapplication/json
object
success
boolean
error
string
message
string
Example
{ "success": false, "error": "not_found", "message": "Resource not found"}