Get Jwt Token 1

Get Jwt Token 1

Perform login with specified credentials and generate JWT token.

Request
URI
POST
https://10.71.204.121:9443/api/v2/login
COPY
Request Body
LoginCredentials of type(s) application/json
Required
{
    "username": "string",
    "password": "string"
}
string
username
Required

The username to log in with.

string
password
Required

The password to log in with.

Responses
200

JWT token for logged in user.

Returns JwtResponse of type(s) */*
{
    "token": "string"
}
string
token
Optional

The JWT token to be used for authentication in subsequent requests.


401

Unauthorized access

Returns JwtResponse of type(s) */*
{
    "token": "string"
}
string
token
Optional

The JWT token to be used for authentication in subsequent requests.