CiviCRM

Interact with CiviCRM API v4 (Civi-Go compatible). Supports Contact, Membership, Group, Relationship and Activity entities. Includes dynamic mapping of email, phone, address and location types. Includes birth_date validation and JSON filters for GET MANY.

Overview

This node interacts with the CiviCRM API v4 to perform operations on the 'Group' resource, specifically supporting the 'Get' operation. It retrieves detailed information about a specific group by its ID. This is useful for scenarios where you need to fetch group details such as name, title, subject, and display name from a CiviCRM system. For example, it can be used to integrate group data into workflows for membership management or event planning.

Use Case Examples

  1. Retrieve details of a specific group by providing its ID to use in further automation or reporting.
  2. Fetch group information to synchronize with other systems or databases.

Properties

Name Meaning
ID The unique identifier of the group to retrieve. This is a required numeric input used to specify which group to fetch.

Output

JSON

  • id - The unique identifier of the group.
  • name - The name of the group.
  • title - The title of the group.
  • subject - The subject associated with the group.
  • display_name - The display name of the group.

Dependencies

  • Requires an API key credential for authenticating with the CiviCRM API v4.

Troubleshooting

  • Ensure the provided group ID exists in the CiviCRM system; otherwise, the node may return an empty result or error.
  • Verify that the API credentials are correctly configured and have sufficient permissions to access group data.
  • If the node throws an error about invalid input, check that the ID is a valid number and is provided as required.

Discussion