Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 367 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 367 Bytes

Push Notifications Demo for Salesforce

You will also need a Push Topic some like this:

PushTopic pushTopic = new PushTopic();
pushTopic.Name = 'AllAccounts';
pushTopic.Query = 'SELECT id, name FROM Account';
pushTopic.ApiVersion = 26.0;
pushTopic.NotifyForOperations = 'All';
pushTopic.NotifyForFields = 'Referenced';
insert pushTopic;