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

Body

application/json

Response

200
application/json

Successful response

The response is of type object.