Overview
This node interacts with the JobRoom API Switzerland to manage job advertisements. It supports operations such as creating a new job advertisement, retrieving a job advertisement by ID, retrieving multiple job advertisements, searching job advertisements by status, and canceling a job advertisement. This node is useful for automating job advertisement management workflows, such as posting new jobs, fetching job details, or managing job statuses programmatically.
Use Case Examples
- Create a new job advertisement by providing complete job data in JSON format.
- Get details of a specific job advertisement by its ID.
- Retrieve multiple job advertisements with pagination and limit options.
- Search job advertisements filtered by their status and sorted by date or other criteria.
Properties
| Name | Meaning |
|---|---|
| Job Advertisement ID | The ID of the job advertisement to get or cancel. Required for 'get' and 'cancel' operations on job advertisements. |
Output
JSON
id- The unique identifier of the job advertisement.title- The title of the job advertisement.description- The detailed description of the job advertisement.status- The current status of the job advertisement (e.g., published, cancelled).success- Indicates if the cancellation operation was successful (only for cancel operation).message- A message confirming the result of the operation, such as successful cancellation.
Dependencies
- JobRoom API credentials including license key, username, and password are required for authentication.
Troubleshooting
- Invalid Personal Finder API Key error indicates the license key is invalid or expired. Verify the license key with JobRoom support.
- Invalid JSON error occurs if the job data JSON is malformed. Ensure the JSON input is correctly formatted.
- API request failures may occur due to network issues or incorrect credentials. Check API endpoint URLs and credentials.
- Pagination parameters must be correctly set to avoid empty or incomplete results when retrieving multiple job advertisements.
Links
- JobRoom API Documentation - Official API documentation for JobRoom, detailing endpoints and data structures.