function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
AyushKhandelwal9AyushKhandelwal9 

Other than Change Event triggers, is there any way to access change events without subscribing?

VinayVinay (Salesforce Developers) 

HI Ayush,

I don't think there is an alternative for change event triggers.  However, you can checking event monitoring.

https://developer.salesforce.com/docs/atlas.en-us.change_data_capture.meta/change_data_capture/cdc_trigger_intro.htm

Thanks,

AnudeepAnudeep (Salesforce Developers) 
You can see change event notification only after subscribing. If you are looking for a way to access change events without subscribing, you can do so using REST API. See this documentation to learn more
Shivam MeenaShivam Meena
Hi Anudeep,

The REST API you mentioned is for getting schema, not for actual events. Is there any other other API call to access published change events?