CoachTrigger Live icon

CoachTrigger Live

Interact with coach trigger action liveelopment server API

Overview

This node interacts with the CoachTrigger API to retrieve and manage various types of activity-related data for a company. Specifically, the "Company: Get Master Activities List" operation fetches a comprehensive list of all activities available for the company within the Coach API system.

Use cases include:

  • Retrieving a master list of activities to display or process in workflows.
  • Integrating company-wide activity data into dashboards or reports.
  • Automating processes that depend on up-to-date activity information from the CoachTrigger platform.

For example, a user might use this node to pull the full catalog of activities their company tracks, then filter or analyze them downstream in n8n.

Properties

Name Meaning
Authentication Choose between two authentication methods: "Company Api" (using an API key credential) or "System Api" (using a system API token).

Note: For this specific operation ("Company: Get Master Activities List"), no additional input parameters are required beyond selecting the authentication method.

Output

The node outputs JSON data containing the master list of activities retrieved from the CoachTrigger API. The structure corresponds directly to the API response, typically an array or object detailing each activity's attributes such as ID, name, description, and other metadata relevant to the company's activities.

No binary data output is involved.

Example output snippet (conceptual):

{
  "activities": [
    {
      "id": "activity_1",
      "name": "Sales Call",
      "description": "A call made to a potential client"
    },
    {
      "id": "activity_2",
      "name": "Team Meeting",
      "description": "Internal team sync-up"
    }
  ]
}

Dependencies

  • Requires valid credentials for the CoachTrigger API, either via a company API key or a system API token.
  • The node makes HTTP POST requests to the CoachTrigger API endpoints.
  • No additional external libraries beyond standard HTTP request helpers provided by n8n.

Troubleshooting

  • Authentication errors: Ensure the selected authentication method matches the provided credentials and that the API keys/tokens are valid and have sufficient permissions.
  • Empty or malformed responses: Verify that the CoachTrigger API service is operational and that the account has access to activity data.
  • Network issues: Confirm that your environment allows outbound HTTPS requests to https://www.coachtriggerapp.com.
  • Parsing errors: The node attempts to parse JSON responses; if the API returns unexpected formats, check for API changes or contact support.

Links and References

Discussion