Remove Organization

With this operation, the automation can disassociate a person from an organization, useful for record updates, company changes or contact reclassification.

The Remove Organization operation allows unlinking a person record from an organization (company) record. Keeping associations between contacts and companies up to date is crucial for the accuracy of your B2B data.

This action is normally used when a contact changes jobs or when a link was made incorrectly. By removing the association, you ensure that the person is no longer considered part of that organization in your segmentations, reports, and automations.

The operation only removes the link with the specified organization, not affecting other associations the person may have.

How to Configure

  1. In Hablla Studio, add the "People" block to your automation flow.

  2. In the "Operation" field, select the "Remove Organization" option.

  3. In the "Person ID" field (personId), enter the identifier of the contact from which the organization will be dissociated.

  4. In the "Organization" field, select the organization you wish to remove from the person's profile.

Parameters

Field
Type
Required?
Description

Person ID

Text

✅ Yes

The unique ID of the person (contact) from whom the organization will be unlinked.

Organization

List of Organizations

✅ Yes

The organization to be dissociated from this person.

Structure (Using JSON)

The JSON request body must contain an array called organizations with the ID(s) of the organization(s) to be removed.

JSON

{
  "organizations": [
    "organization_id_abc123"
  ]
}

🚀 Example Use Case

Purpose: When a contact's email results in a "hard bounce" and the error message indicates that the person no longer works at the company, remove the association with the organization.

  1. Create a flow triggered by a Webhook from your email service that fires on a "hard bounce" with a specific message (e.g., "User not found").

  2. The trigger receives the contact's email. Use the "Find Person by Email" operation to obtain the personId and the person's data, including the organization they belong to (person.organizations[0].id).

  3. Add the "People" block with the "Remove Organization" operation.

    • Person ID: Use the ID found in the search ({{steps.2.result.id}}).

    • Organization: Use the ID of the organization also found in the search ({{steps.2.result.organizations[0].id}}).

  4. Optionally, add an "Ex-employee" tag to that person to record the reason for the change.

With this automation, you proactively clean your database, ensuring that your contact lists by company are always accurate and reliable.

Last updated

Was this helpful?