Query to find the person who added the case team member in Salesforce

Query to find the person who added the case team member in Salesforce

SOQL:

SELECT Id, ParentId, CreatedBy.Name, LastModifiedBy.Name, Member.Name FROM CaseTeamMember WHERE ParentId = ‘Id of the case’

Sample Query:

Leave a Reply