Data Change Notification Results

Each binding in a data change notification (DCN) request is associated with an ID. The result status of the DCN request is returned in JavaScript Object Notation (JSON) format. Basically it is a list of IDs followed by a Boolean success field and status message, in case of error.

This example shows The exact JSON format for a DCN result for a request of three IDs (recID1, recID2, recID3). The example has been formatted using new lines, and indentations, which are not present in an actual response:
[
 {
 "recordIDs":
  [
  "recID1",
  "recID2"
  ],
 "success":true,
 "statusMessage":""
 },
 {
 "recordIDs":
  [
  "recID3"
  ],
 "success":false,
 "statusMessage":"bad msg2
 "}
]