SAML Login
GET
/saml/{tenant}/login
const url = 'https://auth.timetonic.com/api/saml/example/login';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/loginInitiate SAML SSO login (redirects to IdP)
Parameters
Section intitulée « Parameters »Path Parameters
Section intitulée « Path Parameters »tenant
required
string
SAML tenant identifier
Query Parameters
Section intitulée « Query Parameters »RelayState
string format: uri
URL to redirect after login
Responses
Section intitulée « Responses »Redirect to IdP
Location
string format: uri
Resource not found
Media typeapplication/json
object
success
boolean
error
string
message
string
Example
{ "success": false, "error": "not_found", "message": "Resource not found"}