Skip to main content
The RelationDelete event fires whenever an existing record-level link between two objects is removed. The payload identifies both sides of the now-deleted relationship along with the governing association definition. Use this event to remove corresponding edges from external graph databases, update denormalized data, or trigger cleanup workflows when records are unlinked.

Payload

FieldTypeDescription
idstringUnique identifier of the deleted relation instance
firstObjectKeystringObject type key for the first record that was part of the relationship
secondObjectKeystringObject type key for the second record that was part of the relationship
firstRecordIdstringID of the specific record on the first side of the link
secondRecordIdstringID of the specific record on the second side of the link
associationIdstringID of the association definition that governed this relation
locationIdstringSub-account ID where this relation existed

Example payload

{
  "id": "67ae0d741119d218c9d0c477",
  "firstObjectKey": "custom_objects.mad",
  "firstRecordId": "67a349a79b28947ec1f65bb5",
  "secondObjectKey": "contact",
  "secondRecordId": "emqfhnG3g9D9chy9inTz",
  "associationId": "669e5795add2094075906c65",
  "locationId": "eHy2cOSZxMQzQ6Yyvl8P"
}
Last modified on March 4, 2026