Authenticate to CCRC WAN Server

{
"operationName": "login",
"operationArguments": {
"ccrcWanServerURL": "https://wan.example.com/ccrc",
"userName": "alice",
"password": "alicePass",
"groupList": [
"clearcase", "devs", "qa"
],
"primaryGroupName": "clearcase",
}
}
operationName: string

Name of the operation

"login"
operationArguments: object
userName: string

Login User

"alice"
password: string

Login Password

"alicePass"
ccrcWanServerURL: string

CCRC WAN server URL

"https://wan.example.com/ccrc"
primaryGroupName: string

Primary group of login user

"clearcase"
groupList: string[]

Group list of login user

[
"clearcase", "devs", "qa"
]
string