cURL
curl --request POST \ --url https://auth.platform.arb.inc/authenticate/basic-auth \ --header 'Content-Type: application/json' \ --data ' { "email": "[email protected]", "password": "strongpassword123" } '
{ "accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "refreshToken": "9fd0b18a-6b3c-4e5f-9422-893ef77a07ea", "validForSeconds": 3600 }
Authenticates a user using basic credentials and returns an access token and refresh token upon success.
Email address of the user.
"[email protected]"
Password for the user account.
"strongpassword123"
Authentication successful.
JWT access token.
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
Refresh token for session renewal.
"9fd0b18a-6b3c-4e5f-9422-893ef77a07ea"
Lifetime of the access token in seconds.
3600