Skip to content

Instantly share code, notes, and snippets.

@choudharymanish8585
Last active August 21, 2018 09:43
Show Gist options
  • Save choudharymanish8585/6b3cab4f0e117a1de62c07a232c02fd9 to your computer and use it in GitHub Desktop.
Save choudharymanish8585/6b3cab4f0e117a1de62c07a232c02fd9 to your computer and use it in GitHub Desktop.
//Run this code in anonymous window of developer console
//Here my channel name is "AccountSpy" which will be used for subscription
PushTopic pushTopic = new PushTopic();
pushTopic.Name = 'AccountSpy';
pushTopic.Query = 'SELECT Id, Name, Type, Phone, Website FROM Account';
pushTopic.ApiVersion = 43.0;
pushTopic.NotifyForOperationCreate = true;
pushTopic.NotifyForOperationUpdate = true;
pushTopic.NotifyForOperationUndelete = true;
pushTopic.NotifyForOperationDelete = true;
pushTopic.NotifyForFields = 'Referenced';
insert pushTopic;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment