Actions11
Overview
This node integrates with a recruitment platform's API to manage quiz sessions assigned to candidates. Specifically, the "Assign New Quizz" operation allows users to assign a particular quiz to an existing quiz session for a candidate. This is useful in recruitment workflows where candidates need to complete assessments or quizzes as part of the hiring process.
Practical examples include:
- Automatically assigning a coding test quiz to a candidate after their application is reviewed.
- Reassigning or updating the quiz linked to a candidate’s session based on new requirements.
- Managing multiple quiz sessions and assignments programmatically within an automated recruitment pipeline.
Properties
Name | Meaning |
---|---|
Session ID * | The unique identifier of the quiz session to which the quiz will be assigned. This links the quiz to a specific candidate's session. |
Quiz ID * | The unique identifier of the quiz that should be assigned to the specified session. |
Both properties are required for the "Assign New Quizz" operation under the "Candidates Quizz Sessions" resource.
Output
The node outputs a JSON object representing the result of the quiz assignment operation. This typically includes confirmation details such as the updated session information or status indicating that the quiz was successfully assigned.
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating with the recruitment platform's Pulse API.
- The node depends on the external Pulse API service to perform operations related to quiz sessions.
- Proper configuration of the API credentials in n8n is necessary for successful execution.
Troubleshooting
Common Issues:
- Invalid or missing Session ID or Quiz ID can cause the operation to fail.
- Authentication errors if the API key credential is not set up correctly.
- Network or API downtime may lead to request failures.
Error Messages:
"The operation "assignQuizz" is not supported for resource "quizzSessions"!"
indicates a misconfiguration or unsupported operation selection.- Errors containing messages about invalid IDs usually mean the provided Session ID or Quiz ID does not exist or is malformed.
Resolutions:
- Verify that both Session ID and Quiz ID are correct and correspond to existing entities in the recruitment system.
- Ensure the API key credential is valid and has sufficient permissions.
- Check network connectivity and API service status.
Links and References
- Pulse API Documentation (Replace with actual URL if available)
- n8n Documentation on Creating Custom Nodes
- General guide on Recruitment Automation Workflows (Replace with relevant resources)