cURL
curl --request POST \ --url https://v2.flabs.in/client/auth/token \ --header 'Content-Type: application/json' \ --data '{ "clientID": "your-client-id", "clientSecret": "your-client-secret" }'
{ "authToken": "auth-token", "refreshToken": "refresh-token", "expiresIn": 600 }
Generates a new auth token and refresh token using client ID and client secret.
Successful response
The response is of type object.
object