You need to sign in to do that
Don't have an account?
Daniel Gudzik
Get groupId and memberId when using /sobjects/groupmember/deleted API
Hi,
Is it possible to get groupId and memberId when getting a groupMemberId from /sobjects/groupmember/deleted API ?
I am using this API to get notified regarding deleted group members.
The response is just groupMemberId, but since it was already deleted, its not in the groupMember table anymore.
How can I get the information about this ID (groupID, memberID) ?
Thanks in advance!
Is it possible to get groupId and memberId when getting a groupMemberId from /sobjects/groupmember/deleted API ?
I am using this API to get notified regarding deleted group members.
The response is just groupMemberId, but since it was already deleted, its not in the groupMember table anymore.
How can I get the information about this ID (groupID, memberID) ?
Thanks in advance!
You can use the ALL ROWS keywords to query all records in an organization, including deleted records and archived activities.
Check This (https://developer.salesforce.com/forums/?id=906F0000000g33RIAQ)
regards
Thanks for your response!
Unfortunatly it doesn't work.
I deleted a group member and executed the following query in postman:
...salesforce.com/services/data/v45.0/sobjects/groupmember/deleted?start=2019-03-04T18%3A40%3A00Z&end=2019-03-25T13%3A00%3A50Z
Response:
Then I queried for this group member with ALL ROWS:
But the response is as follows:
What wrong have I done?
Any suggestions to get the group ID and member ID of the deleted record using API (in postman, not in Java code)
Thanks in advance!
Sorry for the delay,
I think we cannot use ALL ROWS keyword inside Developer console, data loader, postman etc.. It is supported only inside the Apex SOQL code