Hey there,
It is not possible to register for sessions with the events api.
/api/v1.0/orgs/{organizationId}/eventmanagement/events/{readableEventId}/registrations
In there it seems like attendeeSessions needs to be used to register for sessions
The registration for the event does work, however when adding sessions, like so:
"attendeeSessions": [
{
"sessionId": "Session 1",
"value": "on",
"waitlisted": false
},
{
"sessionId": "the guuid string",
"value": "on",
"waitlisted": false
},
{
"id": "Sessie 1",
"value": "on",
"waitlisted": false
},
{
"id": "the guuid string",
"value": "on",
"waitlisted": false
}
]
There are no sessions registered for the event.
The logs show the following:
2025-05-01T15:49:38.3052377Z :: Information(170015) :: ValidateSessionRegistrationCountStrategy
2025-05-01T15:49:38.3052377Z :: Information(910052) :: GetSessionEntity called with guid: EVENT_GUID
2025-05-01T15:49:38.3052377Z :: Information(170015) :: Resolving custom columns for msevtmgt_session
2025-05-01T15:49:38.3208628Z :: Information(910052) :: Session is found: True
2025-05-01T15:49:38.3208628Z :: Information(910037) :: Getting realtime state for event EVENT_GUID
2025-05-01T15:49:38.3208628Z :: Information(910015) :: Getting from Crm msevtmgt_event EVENT_GUID, noLock: True.
2025-05-01T15:49:38.3364875Z :: Information(910015) :: msevtmgt_event entity successfully received
2025-05-01T15:49:38.3364875Z :: Information(910037) :: Parameter getSessionRegistrationFeatureState: False. This will skip session registration feature state check, will default to false!
2025-05-01T15:49:38.3364875Z :: Information(910038) :: Source system Realtime for event EVENT_GUID of session SESSION_GUID is incompatible with plugin. Exiting.
What is the correct way to register for sessions in an event using the events api?
Thank you so much!