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.
Actions30
Overview
This node interacts with the CiviCRM API v4 to perform operations on the 'Activity' resource. Specifically, the 'Get' operation retrieves detailed information about a single activity by its ID. This is useful for scenarios where you need to fetch specific activity records from CiviCRM, such as retrieving event participation details or tracking communication activities.
Use Case Examples
- Retrieve an activity record by its unique ID to display or process its details in a workflow.
- Fetch activity information to integrate with other systems or for reporting purposes.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the activity to retrieve. This is a required numeric input used to specify which activity record to fetch. |
Output
JSON
id- The unique identifier of the activity.name- The name of the activity.title- The title of the activity.subject- The subject of the activity.display_name- A display-friendly name for the activity.
Dependencies
- Requires an API key credential for authenticating with the CiviCRM API v4.
Troubleshooting
- Ensure the provided 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 the Activity resource.
- If the API request fails, check network connectivity and the base URL configuration for the CiviCRM instance.
Links
- CiviCRM API v4 Documentation - Official documentation for the CiviCRM API version 4, detailing available endpoints and usage.