Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This needs to be requested from the following URL using a POST request. Once the token has been returned, it will expire after 60 minutes.

Request

POSThttps://{enterprise}.cvtr.io/api/login


ParameterRequiredDescription
usernameYesYour username
passwordYesYour password
mfa_tokenNoMFA token supplied if MFA is enabled on your account.
mfa_codeNoYour MFA SMS code if MFA is enabled on your account.


Example Post

Code Block
POST: https://{enterprise}.cvtr.io/api/login
username: {USERNAME}
password: {USER_PASSWORD}

curl -X POST \
https://{enterprise}.cvtr.io/api/login \
-d 'username={USERNAME}&password={PASSWORD}'

If Multifactor Authentication (MFA) is active on your account, you will receive the mfa_token and mfa_code by making the above request with only the required parameters. This will return the below response, with the mfa_code sent via SMS to the number listed on the user account.

...