Refresh tokens (removed — 410 stub)
POST
/auth/refresh
const url = 'https://auth.timetonic.com/api/auth/refresh';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://auth.timetonic.com/api/auth/refreshCompatibility stub only. WebAuthController::refresh unconditionally returns 410 endpoint_removed regardless of request body. Refresh tokens are handled by POST /oidc/token with grant_type=refresh_token.
Responses
Section intitulée « Responses »Endpoint removed — use POST /oidc/token (grant_type=refresh_token)
Media typeapplication/json
object
success
boolean
error
string
message
string
Example
{ "success": false, "error": "endpoint_removed"}