n8n-nodes-recruspace 0.1.2 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +29 -16
- package/dist/nodes/Recruspace/Recruspace.node.js +403 -166
- package/dist/nodes/Recruspace/Recruspace.node.js.map +1 -1
- package/dist/nodes/Recruspace/RecruspaceTrigger.node.js +25 -3
- package/dist/nodes/Recruspace/RecruspaceTrigger.node.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Recruspace
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes
|
|
|
15
15
|
You need a Recruspace API Key to use this node.
|
|
16
16
|
|
|
17
17
|
1. Log in to your Recruspace account.
|
|
18
|
-
2. Go to **Settings** > **
|
|
18
|
+
2. Go to **Settings** > **Career Page**.
|
|
19
19
|
3. Generate a new API Key.
|
|
20
20
|
4. In n8n, add a new "Recruspace API" credential and paste your API Key.
|
|
21
21
|
|
|
@@ -23,33 +23,46 @@ You need a Recruspace API Key to use this node.
|
|
|
23
23
|
|
|
24
24
|
This node supports the following operations:
|
|
25
25
|
|
|
26
|
-
###
|
|
26
|
+
### Triggers
|
|
27
27
|
Starts your workflow when specific events occur in Recruspace:
|
|
28
|
-
* **
|
|
29
|
-
* **Candidate
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
* **Bulk Import Completed**: Triggered when a bulk import is completed.
|
|
29
|
+
* **Candidate Applied**: Triggered when a new candidate is added.
|
|
30
|
+
* **Candidate Replied Email**: Triggered when a candidate replies to an email.
|
|
31
|
+
* **Job Closed**: Triggered when a job post is closed.
|
|
32
|
+
* **New Job Posted**: Triggered when a new job post goes live.
|
|
33
|
+
* **Stage Changed**: Triggered when a candidate's stage is changed.
|
|
34
|
+
|
|
35
|
+
### Candidate Actions
|
|
32
36
|
* **Create Candidate**: Create a new candidate profile.
|
|
33
37
|
* Supports uploading CVs via Binary Data.
|
|
34
|
-
* Can associate the candidate
|
|
38
|
+
* Can associate the candidate with a **Job Post** or a **Talent Pool**.
|
|
35
39
|
* Supports additional fields like Phone Number.
|
|
36
|
-
* **Add
|
|
40
|
+
* **Add Note**: Add a comment/note to an existing candidate profile.
|
|
41
|
+
* **Add Tag**: Add a tag to an existing candidate.
|
|
42
|
+
* **Search**: Search for candidates by email.
|
|
43
|
+
|
|
44
|
+
### Talent Pool Actions
|
|
45
|
+
* **Create Talent Pool**: Create a new talent pool.
|
|
37
46
|
|
|
38
47
|
## Usage Examples
|
|
39
48
|
|
|
40
49
|
### Creating a Candidate from a Form
|
|
41
|
-
1. Use a **Webhook** or **Typeform** node to receive application data
|
|
42
|
-
2. Add the **Recruspace** node
|
|
43
|
-
3.
|
|
44
|
-
4.
|
|
45
|
-
5.
|
|
46
|
-
6. Choose to associate with a **Job Post** (select from list) or **Talent Pool**.
|
|
50
|
+
1. Use a **Webhook** or **Typeform** node to receive application data.
|
|
51
|
+
2. Add the **Recruspace** node with **Operation**: `Create Candidate`.
|
|
52
|
+
3. Map the Name and Email fields.
|
|
53
|
+
4. Set **CV Source** to `Binary Data` if uploading a CV.
|
|
54
|
+
5. Choose to associate with a **Job Post** or **Talent Pool**.
|
|
47
55
|
|
|
48
56
|
### Adding a Note to a Candidate
|
|
49
|
-
1. Use **Recruspace** node with **Operation**: `Add
|
|
50
|
-
2. Enter the **Candidate ID
|
|
57
|
+
1. Use **Recruspace** node with **Operation**: `Add Note`.
|
|
58
|
+
2. Enter the **Candidate ID**.
|
|
51
59
|
3. Enter your note text.
|
|
52
60
|
|
|
61
|
+
### Searching for a Candidate
|
|
62
|
+
1. Use **Recruspace** node with **Operation**: `Search`.
|
|
63
|
+
2. Enter the email address to search.
|
|
64
|
+
3. Choose the result strategy: Return First, Stop if Multiple, or Return All.
|
|
65
|
+
|
|
53
66
|
## Compatibility
|
|
54
67
|
|
|
55
68
|
* Tested with n8n version 1.0.0+.
|