GET api/Sessions?webProductId={webProductId}&shoppingCartId={shoppingCartId}&contactId={contactId}&selectedSessions={selectedSessions}

Retrieves all sessions required in order to register for the specified session.
Possible Service Responses:
200/OK - match found and list of required session are in the body of the response.
500/Internal Server - unexpected server error, details in the body of the response.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
webProductId

System.String

Required

shoppingCartId

System.String

Required

contactId

System.String

Required

selectedSessions

System.String

Required

Body Parameters

None.

Response Information

Resource Description

List of required session or empty list if there are no required sessions for the specified session.

System.Collections.Generic.IEnumerable`1[Altai.Web.Services.Models.Session]
NameDescriptionTypeAdditional information
LastModifiedOn

System.DateTime

None.

Id

System.String

None.

Name

System.String

None.

Title

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.

Event

System.String

None.

EventId

System.Guid

None.

Start

System.DateTime

None.

End

System.DateTime

None.

Description

System.String

None.

Type

System.String

None.

VenueAddress

System.String

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "LastModifiedOn": "2024-11-15T18:26:27.8340107+00:00",
    "Id": "sample string 2",
    "Name": "sample string 3",
    "Title": "sample string 4",
    "SessionGroup": {
      "Id": "sample string 1",
      "Name": "sample string 2",
      "DisplayOrder": 3.0
    },
    "PreRequisiteSessions": [],
    "TwoOption1": true,
    "IsGuestSession": true,
    "Event": "sample string 7",
    "EventId": "164f4906-5e02-40b0-8cd7-54f2b70a4f34",
    "Start": "2024-11-15T18:26:27.8340107+00:00",
    "End": "2024-11-15T18:26:27.8340107+00:00",
    "Description": "sample string 9",
    "Type": "sample string 10",
    "VenueAddress": "sample string 11"
  },
  {
    "LastModifiedOn": "2024-11-15T18:26:27.8340107+00:00",
    "Id": "sample string 2",
    "Name": "sample string 3",
    "Title": "sample string 4",
    "SessionGroup": {
      "Id": "sample string 1",
      "Name": "sample string 2",
      "DisplayOrder": 3.0
    },
    "PreRequisiteSessions": [],
    "TwoOption1": true,
    "IsGuestSession": true,
    "Event": "sample string 7",
    "EventId": "164f4906-5e02-40b0-8cd7-54f2b70a4f34",
    "Start": "2024-11-15T18:26:27.8340107+00:00",
    "End": "2024-11-15T18:26:27.8340107+00:00",
    "Description": "sample string 9",
    "Type": "sample string 10",
    "VenueAddress": "sample string 11"
  }
]

application/xml

Sample:

Sample not available.

text/xml

Sample:

Sample not available.