Post /api/v3/login

Operation: LoginV3

Summary

Request Body Parameters

Content-Type: application/json

Type Reference: LoginRequest

Parameter Description Type
dataSource Datasource Required string
password Password Required string
username Username Required string
partition OPTIONAL - Partition
Usually this is the environment, Staging, Pro, Web.
An empty or NULL partition will result in all partitions being scanned.
string

Request Body

{
  "dataSource": "string",
  "password": "string",
  "username": "string",
  "partition": "string"
}

Response Parameters

HTTP 200


Body Parameters

Content Type: application/json

Type Reference: LoginResponse

Parameter Description Type
token string
user ApiUser
   userName string
   fullName string

Responses

HTTP 200

Body

Content Type: application/json
{
  "token": "string",
  "user": {
    "userName": "string",
    "fullName": "string"
  }
}