Get Session 1

Get Session 1

Perform login with specified credentials and generate session token.

Request
URI
POST
https://10.71.204.121:9443/api/v2/session
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

Session ID for logged in user.

Returns SessionResponse of type(s) */*
{
    "JSESSIONID": "string"
}
string
JSESSIONID
Optional

The JSESSIONID to be used for subsequent requests.


401

Unauthorized access

Returns SessionResponse of type(s) */*
{
    "JSESSIONID": "string"
}
string
JSESSIONID
Optional

The JSESSIONID to be used for subsequent requests.