Authentication
Here, you will find information on endpoints related to token-based authentication, ensuring secure and protected access to our cloud software API.
Last updated
Here, you will find information on endpoints related to token-based authentication, ensuring secure and protected access to our cloud software API.
Last updated
POST /api/TokenAuth/RefreshToken HTTP/1.1
Host:
Accept: */*
Success
{
"accessToken": "text",
"encryptedAccessToken": "text",
"expireInSeconds": 1
}
POST /api/TokenAuth/Authenticate HTTP/1.1
Host:
Content-Type: application/json-patch+json
Accept: */*
Content-Length: 210
{
"userNameOrEmailAddress": "text",
"password": "text",
"twoFactorVerificationCode": "text",
"rememberClient": true,
"twoFactorRememberClientToken": "text",
"singleSignIn": true,
"returnUrl": "text",
"captchaResponse": "text"
}
Success
{
"accessToken": "text",
"encryptedAccessToken": "text",
"expireInSeconds": 1,
"shouldResetPassword": true,
"passwordResetCode": "text",
"userId": 1,
"requiresTwoFactorVerification": true,
"twoFactorAuthProviders": [
"text"
],
"twoFactorRememberClientToken": "text",
"returnUrl": "text",
"refreshToken": "text",
"refreshTokenExpireInSeconds": 1,
"c": "text"
}