Home SALESFORCE Where the Event Invitee list stored in SFDC Object

Where the Event Invitee list stored in SFDC Object?

Events details stored in EVENT Object and Event Invitee list stored in the EventRelations Salesforce Standard Object.

How to retrive the Events and Events Invitee list using SOQL Query:

Select e.WhoId, e.WhatId, e.Id, e.AccountId, (Select Id, RelationId, EventId, Status From EventRelations) From Event e

You may also like

Leave a Comment