MOCO icon

MOCO

Consume MOCO API

Overview

This node interacts with the MOCO API to manage contacts. Specifically, the 'Get' operation under the 'Contact' resource retrieves detailed information about a contact by its ID. This is useful in scenarios where you need to fetch and use contact details within an automation workflow, such as syncing contact data with other systems or triggering actions based on contact information.

Use Case Examples

  1. Retrieve a contact's details by providing their unique Contact ID to use in subsequent workflow steps.
  2. Fetch contact information to update a CRM or send personalized communications.

Properties

Name Meaning
Contact ID The unique identifier of the contact to retrieve. This is a required input to specify which contact's details to fetch.

Output

JSON

  • id - The unique identifier of the retrieved contact.
  • firstname - The first name of the contact.
  • lastname - The last name of the contact.
  • company_id - The ID of the company associated with the contact.
  • title - The contact's title.
  • job_position - The job position of the contact.
  • work_email - The contact's work email address.
  • home_email - The contact's home email address.
  • mobile_phone - The contact's mobile phone number.
  • work_phone - The contact's work phone number.
  • work_fax - The contact's work fax number.
  • home_address - The contact's home address.
  • birthday - The contact's birthday.
  • gender - The contact's gender.
  • info - Additional information about the contact.
  • tags - Tags associated with the contact, typically used for categorization.
  • custom_properties - Custom properties defined for the contact, represented as key-value pairs.

Dependencies

  • MOCO API access with appropriate API key credentials

Troubleshooting

  • Ensure the Contact ID provided is valid and exists in the MOCO system to avoid 'not found' errors.
  • Check API credentials and permissions if the node fails to authenticate or access the contact data.
  • Handle network issues or API rate limits that might cause request failures.

Links

Discussion