Actions20
- Candidates Actions
- Pipeline Templates Actions
- Stage Templates Actions
- Recruitment Campaigns Actions
Overview
The node enables updating a pipeline template within a recruitment system via the Pulse API. It allows users to modify specific fields of an existing pipeline template, such as its name, description, or organizational unit. This is useful in scenarios where recruitment workflows evolve and pipeline templates need to be kept up-to-date to reflect new processes or organizational changes.
Practical examples include:
- Renaming a pipeline template to better describe its purpose.
- Updating the description to provide clearer guidance for recruiters.
- Changing the organizational unit associated with the pipeline template to align with company restructuring.
Properties
| Name | Meaning |
|---|---|
| Pipeline Template ID * | The unique identifier of the pipeline template to update. |
| Update Fields | Collection of fields to update in the pipeline template: |
| - Name | New name for the pipeline template. |
| - Description | New description text for the pipeline template. |
| - Organizational Unit | The organizational unit to associate with the pipeline template. |
Output
The node outputs a JSON object representing the updated pipeline template after the operation completes successfully. This JSON typically includes the updated fields and any other relevant metadata returned by the Pulse API.
If the operation fails and "Continue On Fail" is enabled, the output will contain an error message describing the failure.
Dependencies
- Requires an active connection to the Pulse API using an API key credential configured in n8n.
- The node depends on the Pulse API helper utilities bundled with the node implementation to perform authenticated requests.
- Proper permissions on the Pulse API are necessary to update pipeline templates.
Troubleshooting
Common Issues:
- Invalid or missing Pipeline Template ID: Ensure the ID corresponds to an existing template.
- Insufficient permissions: Verify that the API key has rights to update pipeline templates.
- Network or authentication errors: Check API credentials and network connectivity.
Error Messages:
"The operation "updatePipelineTemplate" is not supported for resource "pipelineTemplate"!"
Indicates a mismatch in operation or resource selection; verify correct configuration.- Errors returned from the Pulse API (e.g., validation errors) will be passed through in the output if "Continue On Fail" is enabled.
Links and References
- Pulse API Documentation (example placeholder link)
- n8n Documentation on Creating Custom Nodes