Workflow blocks
List Contacts
List contacts in Intercom
intercom/list-contacts — List contacts in Intercom.
Where it appears
The List Contacts block lives in the Integrations group of the Workflow Builder. Connect the Intercom integration before adding it.
Fields
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
perPage | number | No | 50 | Number of contacts to return per page from Intercom. Defaults to 50. |
Inputs and outputs
Inputs are the configurable fields above. The block produces these outputs:
Outputs
Reference an output downstream with <List Contacts.field>.
| Name | Type | Description |
|---|---|---|
success | boolean | Operation succeeded |
contacts | json | List of contacts |
pages | json | Pagination info |
error | string | Error message if failed |
Example
A minimal configuration for this block:
{
"type": "intercom/list-contacts",
"config": {
"perPage": 50
}
}Limits and failure modes
- Requires a connected Intercom integration. Calls fail if that integration is disconnected or its authorization has expired.
- On failure the
erroroutput is populated; downstream blocks that reference other outputs may not receive values.