Hi,
I have used "/rest/auth/1/session" rest call with my credentials to get session id. and it has provided me the json like -
{
"session": {
"name": "JSESSIONID",
"value": "42424424242342434234.node1"
},
"loginInfo": {
"failedLoginCount": 6,
"loginCount": 356,
"lastFailedLoginTime": "2019-07-09T08:55:26.560+0000",
"previousLoginTime": "2019-07-11T17:42:08.837+0000"
}
}
now i want to use this session to get all tickets assigned to me in jira. how do i send this session with my other rest call to get tickets detail.
Thanks in advance.