GET api/SessionRegistrations?eventId={eventId}&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
eventId

System.String

Required

attendeeId

System.String

Required

Body Parameters

None.

Response Information

Resource Description

System.Collections.Generic.IEnumerable`1[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": {
      "LastModifiedOn": "2024-11-21T09:47:43.9407833+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": "211e92cf-1540-4f4a-a7b2-58d5c0f5a87e",
      "Start": "2024-11-21T09:47:43.9407833+00:00",
      "End": "2024-11-21T09:47:43.9407833+00:00",
      "Description": "sample string 9",
      "Type": "sample string 10",
      "VenueAddress": "sample string 11"
    },
    "WebProductId": "sample string 3",
    "EventId": "sample string 4",
    "ContactId": "sample string 5"
  },
  {
    "Id": "sample string 1",
    "Name": "sample string 2",
    "Session": {
      "LastModifiedOn": "2024-11-21T09:47:43.9407833+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": "211e92cf-1540-4f4a-a7b2-58d5c0f5a87e",
      "Start": "2024-11-21T09:47:43.9407833+00:00",
      "End": "2024-11-21T09:47:43.9407833+00:00",
      "Description": "sample string 9",
      "Type": "sample string 10",
      "VenueAddress": "sample string 11"
    },
    "WebProductId": "sample string 3",
    "EventId": "sample string 4",
    "ContactId": "sample string 5"
  }
]

application/xml

Sample:

Sample not available.

text/xml

Sample:

Sample not available.