Authentication

Get the auth token.

post

Endpoint for obtaining APP AUTH TOKEN with last_login update.

Authorizations
Body
Other propertiesanyOptional
Responses
200Success
application/json
post
POST /ux/api-token/ HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 46

{
  "username": "admin",
  "password": "YWRtaW4xMjM="
}
200Success
{
  "ANY_ADDITIONAL_PROPERTY": "anything"
}

Get the auth token.

post

Endpoint for obtaining APP AUTH TOKEN with last_login update.

Authorizations
Body
Other propertiesanyOptional
Responses
200Success
application/json
post
POST /ux/api-token-auth/ HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 42

{
  "username": "admin",
  "password": "admin123"
}
200Success
{
  "ANY_ADDITIONAL_PROPERTY": "anything"
}

Get encrypted data for the password string

post

Endpoint for getting JS Encrypted Password.

Authorizations
Body
Other propertiesanyOptional
Responses
200Success
application/json
post
POST /ux/password_js_encrypt/ HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 38

"ANY_ADDITIONAL_PROPERTY='anything'"
200Success
{
  "ANY_ADDITIONAL_PROPERTY": "anything"
}