Authentication

Performing external authentication

The API will return a 200 response if the credentials are correct, a 400 response if either login or password is not provided or 401 if the provided credentials are incorrect. Authentication used to gain Rest API session.

post/authenticate

Request body

loginstring
passwordstring

Example request

{
  "login": "admin",
  "password": "netxms"
}

Response

OK

object required

Changes