Autocust - Contact Operation icon

Autocust - Contact Operation

Handle Autocust operations on contacts

Overview

The node performs operations related to managing contacts in the Autocust system. Specifically, for the Get Single Contact operation, it retrieves detailed information about a single contact either by their unique Contact ID or by their email address.

This operation is useful when you need to fetch specific contact details for further processing, such as updating records, sending personalized communications, or integrating contact data into other workflows.

Practical examples:

  • Retrieve a contact's profile by their ID after a form submission.
  • Look up a contact by email to verify if they exist before adding them to a marketing campaign.
  • Fetch contact details to enrich customer support tickets with relevant user information.

Properties

Name Meaning
Search By Choose whether to search for the contact by Contact ID or Contact Email.
Contact ID The numeric ID of the contact to retrieve (required if "Search By" is set to Contact ID).
Contact Email The email address of the contact to retrieve (required if "Search By" is set to Contact Email).

Output

The output contains a JSON object representing the retrieved contact's data. This typically includes all available fields and attributes associated with that contact in the Autocust system, such as name, email, phone number, and any custom attributes.

No binary data output is involved in this operation.

Dependencies

  • Requires an API key credential for authenticating with the Autocust service.
  • The node depends on the Autocust API endpoint that supports fetching a single contact by ID or email.
  • Proper configuration of the API credentials within n8n is necessary for successful execution.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent Contact ID or email will result in no data found or an error response from the API.
    • Missing or incorrect API credentials will cause authentication failures.
    • Network connectivity problems can prevent the node from reaching the Autocust API.
  • Error messages and resolutions:

    • "The operation 'getSingleContact' is not known!" — This indicates an internal misconfiguration; ensure the operation parameter is correctly set.
    • Authentication errors suggest checking the API key credential setup.
    • If no contact is found, verify that the Contact ID or email provided exists in the Autocust system.

Links and References

Discussion