Authenticate


    # Here is a curl example
    curl \
    -X POST 'http://localhost:8888/api/Authentication/Authenticate
            ?username=test&password=test&licenseId=191' \

To get the authorization access token you need to make a POST call to the following url :
http://localhost:8888/api/Authentication/Authenticate



Result example :

[
  {
    "Access_token": "string",
    "Refresh_token": "string",
    "Expires_in": "2022-11-21T14:29:33.752Z",
    "Token_type": "string",
    "Raw_claim": "string",
    "Success": true,
    "Message": "string"
  }
]
                

Query Parameters

Field Parameter Type Type Description
username query string Your username.
password query string Your password.
licenseId query integer License Id. You can get from another method (http://localhost:8888/api/Authentication/License).