Home

March 31, 2026

New ParentEntityKey and ParentEntityType Fields in NoteComment Webhook Payloads

Webhook notifications for NoteComment events now include two new fields — ParentEntityKey and ParentEntityType — identifying the entity the comment belongs to, making it possible to retrieve the comment and the context around it with a call to the /v3/Notes API endpoint.

For example, when receiving the payload:

{
  "ResourcePermaKey": "fS9TJ5TrRxZ",
  "ResourceType": "NoteComment",
  "ActionType": "Updated",
  "Timestamp": "2026-03-24T10:25:44Z",
  "ParentEntityKey": "2TTFWz8L5SSt",
  "ParentEntityType": "Note"
}

You can then call GET /v3/Notes/2TTFWz8L5SSt to retrieve the details of the Note and all comments on the Note.

FieldTypeDescription
ParentEntityKeystringThe unique key of the parent entity that the comment belongs to.
ParentEntityTypestringThe type of the parent entity (e.g. Note).