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
| Name | Description | Type | Additional 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]| Name | Description | Type | Additional 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": "2025-11-21T00:54:47.8532898+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": "7961225c-434e-428c-ae88-8ed8688ded9c",
"Start": "2025-11-21T00:54:47.8532898+00:00",
"End": "2025-11-21T00:54:47.8532898+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": "2025-11-21T00:54:47.8532898+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": "7961225c-434e-428c-ae88-8ed8688ded9c",
"Start": "2025-11-21T00:54:47.8532898+00:00",
"End": "2025-11-21T00:54:47.8532898+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.