Actions23
- Activities Actions
- Project Actions
- Project Member Actions
- Project Document Actions
- Project Data Actions
- Project Work Unit Actions
Overview
This node interacts with the Pulse API to perform various workflow actions related to project management. Specifically, for the Project Document resource and the Get Project Document Url operation, it retrieves the URL of a specified project document by its ID. This is useful when you want to programmatically access or share direct links to documents stored within a project in Pulse.
Common scenarios:
- Automatically fetching document URLs to include in notifications or reports.
- Integrating project document links into other systems or workflows.
- Accessing document URLs for further processing or download steps in an automation.
Properties
Name | Meaning |
---|---|
Document ID * | The unique identifier of the project document whose URL you want to retrieve. |
Output
The node outputs a JSON object containing the URL of the requested project document. The exact structure depends on the Pulse API response but typically includes fields such as:
url
: The direct link to access the project document.- Additional metadata about the document may also be included depending on the API response.
No binary data output is indicated for this operation.
Dependencies
- Requires an active connection to the Pulse API via an API key credential configured in n8n.
- The node depends on the Pulse API helper utilities bundled with the node implementation to handle authentication and API requests.
Troubleshooting
- Missing or invalid Document ID: Ensure that the Document ID property is correctly set and corresponds to an existing document in the Pulse system.
- API authentication errors: Verify that the API key credential is valid and has sufficient permissions to access project documents.
- Unsupported operation or resource errors: These occur if the resource or operation parameters are incorrectly set; confirm that "Project Document" is selected as the resource and "Get Project Document Url" as the operation.
- Network or API downtime: Check network connectivity and Pulse API status if requests fail unexpectedly.
Links and References
- Pulse API Documentation (replace with actual URL)
- n8n documentation on creating custom nodes