When you create an event with invitees in Salesforce, two Event records are created in the backend: one parent event and one child event. The parent event has the field IsChild = false, and the child event has IsChild = true. Both records share the same Subject and WhatId (the related record, such as an Opportunity or Account).
You can verify this by querying the Event object and filtering on the IsChild field to identify which records are parent events and which are child events.
Note: There is no direct parent-child relationship field on the Event object in Salesforce. Identifying the parent event from a child event requires a workaround using shared field values.
To retrieve the parent event from a given child event, you can use the following workaround. Query for an Event record that shares:
This combination uniquely identifies the parent event in most cases.
Important Limitation: If two events have exactly the same Subject and are related to the same WhatId, this query returns multiple results. In that case, additional filtering (such as by date or CreatedDate) may be needed to isolate the correct parent event.
It is also possible to create a report in Salesforce with the condition IsChild set to False to generate a list of all parent event records in your org.
Given a child Event ID, to find its parent event, query:SELECT Id, Subject, IsChild, WhatId, WhoId FROM Event WHERE IsChild = false AND Subject = '[Subject of Child Event]' AND WhatId = '[WhatId of Child Event]'
Replace [Subject of Child Event] and [WhatId of Child Event] with the actual values from the child event record.
000386330

We use three kinds of cookies on our websites: required, functional, and advertising. You can choose whether functional and advertising cookies apply. Click on the different cookie categories to find out more about each category and to change the default settings.
Privacy Statement
Required cookies are necessary for basic website functionality. Some examples include: session cookies needed to transmit the website, authentication cookies, and security cookies.
Functional cookies enhance functions, performance, and services on the website. Some examples include: cookies used to analyze site traffic, cookies used for market research, and cookies used to display advertising that is not directed to a particular individual.
Advertising cookies track activity across websites in order to understand a viewer’s interests, and direct them specific marketing. Some examples include: cookies used for remarketing, or interest-based advertising.