GET api/Sessions/{id}

Retrieve session by Id.
Possible Service Responses:
200/OK - returns a stirng specifying blocking sessions.
500/Internal Server - unexpected server error, details in the body of the response.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

System.String

Required

Body Parameters

None.

Response Information

Resource Description

Session

Altai.Web.Services.Models.Session
NameDescriptionTypeAdditional information
Id

System.String

None.

Name

System.String

None.

SessionGroup

Altai.Web.Services.Models.SessionGroup

None.

PreRequisiteSessions

System.Collections.Generic.List`1[Altai.Web.Services.Models.Session]

None.

TwoOption1

System.Boolean

None.

IsGuestSession

System.Boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "sample string 1",
  "Name": "sample string 2",
  "SessionGroup": {
    "Id": "sample string 1",
    "Name": "sample string 2",
    "DisplayOrder": 3.0
  },
  "PreRequisiteSessions": [],
  "TwoOption1": true,
  "IsGuestSession": true
}

application/xml

Sample:

Sample not available.

text/xml

Sample:

Sample not available.