Health check
GET
/health
const url = 'https://auth.timetonic.com/api/health';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/healthCheck service availability
Responses
Section intitulée « Responses »Service is healthy
Media typeapplication/json
object
status
string
service
string
timestamp
string format: date-time
Example
{ "status": "ok", "service": "authentication-service"}