GET api/SessionRegistrations?sessionId={sessionId}&attendeeId={attendeeId}

Retrieves all Session Registrations for the specified event and attendee
Possible Service Responses:
200/OK - match found and list of session registrations are in the body of the response.
404/Session Registration Not Found - no session registrations for specified criteria.
500/Internal Server - unexpected server error, details in the body of the response.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
sessionId

System.String

Required

attendeeId

System.String

Required

Body Parameters

None.

Response Information

Resource Description

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

System.String

None.

Name

System.String

None.

Session

Altai.Web.Services.Models.Session

None.

WebProductId

System.String

None.

EventId

System.String

None.

ContactId

System.String

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "sample string 1",
  "Name": "sample string 2",
  "Session": {
    "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
  },
  "WebProductId": "sample string 3",
  "EventId": "sample string 4",
  "ContactId": "sample string 5"
}

application/xml

Sample:

Sample not available.

text/xml

Sample:

Sample not available.