SessionService schema describes the session service and its properties, with links to the actual list of sessions.X-Auth-Token: ********************username:passwordAuthorization: Basic *****************curl --location '/redfish/v1/SessionService' \
--header 'X-Auth-Token: <api-key>' \
--header 'Authorization: Basic <encoded-value>'{
"@odata.context": "/redfish/v1/$metadata#SessionService.SessionService",
"@odata.etag": "W/\"gen-2\"",
"@odata.id": "/redfish/v1/SessionService",
"@odata.type": "#SessionService.v1_2_0.SessionService",
"Description": "Session Service",
"Id": "SessionService",
"Name": "Session Service",
"ServiceEnabled": true,
"SessionTimeout": 1800,
"Sessions": {
"@odata.id": "/redfish/v1/SessionService/Sessions"
},
"Status": {
"Health": "OK",
"State": "Enabled"
}
}