StyloDocs
Workflow blocks

Delete Contact

Delete a contact in Intercom

View as Markdown

intercom/delete-contact — Delete a contact in Intercom.

Where it appears

The Delete Contact block lives in the Integrations group of the Workflow Builder. Connect the Intercom integration before adding it.

Fields

FieldTypeRequiredDefaultDescription
contactIdtext (supports references)YesIntercom contact ID to act on. Use a literal ID or <StepName.field> to reference an ID from a previous step.

Inputs and outputs

Inputs are the configurable fields above. The block produces these outputs:

Outputs

Reference an output downstream with <Delete Contact.field>.

NameTypeDescription
successbooleanOperation succeeded
deletedbooleanContact was deleted
errorstringError message if failed

Example

A minimal configuration for this block:

{
  "type": "intercom/delete-contact",
  "config": {
    "contactId": "<PreviousStep.field>"
  }
}

Limits and failure modes

  • Requires a connected Intercom integration. Calls fail if that integration is disconnected or its authorization has expired.
  • Required field (contactId) must be set, or the block fails validation before it runs.
  • On failure the error output is populated; downstream blocks that reference other outputs may not receive values.

On this page