cURL
curl --request POST \ --url https://v2.flabs.in/client/auth/token/refresh \ --header 'Content-Type: application/json' \ --data ' { "clientID": "your-client-id", "refreshToken": "your-refresh-token" } '
{ "authToken": "auth-token", "refreshToken": "refresh-token", "expiresIn": 600 }
Get new Authorization token using the refresh token and client credentials.
Successful response
JWT token valid for 10 minutes
Refresh Token will expires after 30 days of inactivity; used to obtain new authentication tokens
Time in seconds until auth token expires (600 seconds = 10 minutes)
Was this page helpful?