POST
/
client
/
auth
/
token
/
refresh
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
}

Body

application/json
clientID
string
required
refreshToken
string
required

Response

200
application/json
Successful response
authToken
string

JWT token valid for 10 minutes

refreshToken
string

Refresh Token will expires after 30 days of inactivity; used to obtain new authentication tokens

expiresIn
integer

Time in seconds until auth token expires (600 seconds = 10 minutes)