Auth

Sends a username and a password to a server. The response contains a token. Use this token in other requests to the server.

For more information about authenticating, see Authenticating.

Request

POST /auth

Authentication request should have a content type HTTP header:

Content-Type:application/json

Request Body Fields

  • username — User name.

  • password — Password.

Response Body Fields

  • token — Authentication token.

Example Request

Request:

POST https://localhost:8443/rest/auth

Example request body JSON:

{
"username":"admin",
"password":"admin"
}

Example response body JSON:

{
"token": "eyJhbGciOiJЕОfUxMiJ9.eyJzdWIiOiJhZG1pbiIsImV4cRT6MTU1NjA0MzA4OCwiaWF0IjoxNTU2MDM5NDg4fQ.7S_0OFL1mjGVAafBWQ2lDsJguUqCng9_OTfCsiU9RckQTRsI3H86ZytJkyjKtzTF4VYQ_3A3ZSa7RPhAttu5NQ"
}

Was this page helpful?