Encrypting Platform Event Messages at Rest in the Event Bus
Platform Event Error Status Codes
Change Data Capture Events
Previous Versions
Salesforce Change Data Capture publishes change events, which represent changes to Salesforce records. Changes include record creation, updates to an existing record, deletion of a record, and undeletion of a record. Change Data Capture events are available since API version 44.0.
Change events are available for all custom objects and a subset of standard objects. The name of a change event is based on the name of the corresponding object for which it captures the changes. For a list of supported standard objects, see _StandardObjectName_ChangeEvent in the Object Reference for Salesforce and Lightning Platform.
Standard Object Change Event Name
1<Standard_Object_Name>ChangeEventExample: AccountChangeEvent
Custom Object Change Event Name
1<Custom_Object_Name>__ChangeEventExample: Employee__ChangeEvent
Subscription channels for change events depend on the name of the change event you want to receive messages for. Also, a generic channel is provided to receive all messages.
Channel for All Change Events
To receive event messages for all objects selected for Change Data Capture, use this channel:
1/data/ChangeEventsStandard Object Channel
To receive event messages for changes in a standard object, use this channel:
1/data/<Standard_Object_Name>ChangeEventExample: AccountChangeEvent
Custom Object Channel
To receive event messages for changes in a custom object, use this channel:
1/data/<Custom_Object_Name>__ChangeEventExample: Employee__ChangeEvent
The record fields in the change event correspond to the fields on the associated Salesforce object or entity that triggered the change. Only new or updated fields are included in the event message with a populated value.
For example, the fields that can be sent in a change event for the Account object are the Account fields. To look up the fields of a standard object, see Object Reference for Salesforce and Lightning Platform.
Each change event also contains header fields. The header fields are included inside the ChangeEventHeader field. They contain information about the event, such as whether the change was an update or delete and the name of the entity, like Account, among other things.
The following example shows a change event message for a new account received in a Pub/Sub API client.
1{
2 "ChangeEventHeader": {
3 "entityName": "Account",
4 "recordIds": [
5 "0015f00002J9YYEAA3"
6 ],
7 "changeType": "CREATE",
8 "changeOrigin": "com/salesforce/api/soap/60.0;client=SfdcInternalAPI/",
9 "transactionKey": "0001ade9-3f74-0b99-dbc4-42e73424b774",
10 "sequenceNumber": 1,
11 "commitTimestamp": 1712693965000,
12 "commitNumber": 1082985383811,
13 "commitUser": "0055f000005mc66AAA",
14 "nulledFields": [],
15 "diffFields": [],
16 "changedFields": []
17 },
18 "Name": "Acme",
19 "Type": null,
20 "ParentId": null,
21 "BillingAddress": null,
22 "ShippingAddress": null,
23 "Phone": null,
24 "Fax": null,
25 "AccountNumber": null,
26 "Website": null,
27 "Sic": null,
28 "Industry": null,
29 "AnnualRevenue": null,
30 "NumberOfEmployees": null,
31 "Ownership": null,
32 "TickerSymbol": null,
33 "Description": "Sample account record.",
34 "Rating": null,
35 "Site": null,
36 "OwnerId": "0055f000005mc66AAA",
37 "CreatedDate": 1712693965000,
38 "CreatedById": "0055f000005mc66AAA",
39 "LastModifiedDate": 1712693965000,
40 "LastModifiedById": "0055f000005mc66AAA",
41 "Jigsaw": null,
42 "JigsawCompanyId": null,
43 "CleanStatus": "Pending",
44 "AccountSource": null,
45 "DunsNumber": null,
46 "Tradestyle": null,
47 "NaicsCode": null,
48 "NaicsDesc": null,
49 "YearStarted": null,
50 "SicDesc": null,
51 "DandbCompanyId": null,
52 "OperatingHoursId": null,
53 "CustomerPriority__c": null,
54 "SLA__c": null,
55 "Active__c": null,
56 "NumberofLocations__c": null,
57 "UpsellOpportunity__c": null,
58 "SLASerialNumber__c": null,
59 "SLAExpirationDate__c": null
60}For more information about Change Data Capture, see Change Data Capture Developer Guide and Pub/Sub API Developer Guide.