Loading...

Authentication

To connect to our service you must authenticate using an OAuth scheme. As a first step you must generate an access token of type JWT.

To generate the token, you must use the following credentials by your account userName password 

POST /api/Auth/Token
{
  "userName": "string",
  "apiKey": "string"
}
Parameter Type Description
userName string Account username
apiKey string Account API Key
{
  "success": true,
  "errorCode": 0,
  "errorText": "string",
  "token": "string",
  "expires": "2022-10-30T16:28:30.513Z"
}
Parameter Type Description
success bool Return if operation was successful
errorCode int Error code
errorText string Text with description of the error
token string Token created to use other methods
expires datetime Expiration date of generated token