Used to fetch job posts from your database.
URL: https://api.recman.no/v1.php
&scope=job_post
&fields=
The following fields can be fetched from the database. They are separated by a comma (,) and no spaces.
Job post fields | Description |
---|---|
name | Name |
ingress | Ingress |
body | Job post text |
logo | Link to the logo |
from_date | Publishing date |
to_date | Expiration date |
title | Job post title |
place | Location |
deadline | Deadline |
Facebook link | |
Twitter link | |
webpage | Link to home page |
num_positions | Number of positions |
video | Link to Video |
external_ats | Link to external search form |
created | Ad's time of the creation |
updated | Ad's time of update |
position_start | Position Start |
salary | Salary |
company_name | Company Name |
address1 | Address field 1 |
address2 | address field 2 |
city | City |
postal_code | Postal Code |
country | Country |
keywords | List of keywords |
contact_persons | List of contact persons |
country_id | Country ID – see location feed |
region_id | RegionID – see location feed |
city_id | City ID – see location feed |
first_branch | |
first_branch_category_id | Branch category ID (see Branch and Branch category) |
first_branch_id | Branch ID (see Branch and Branch category |
second_branch_category_id | Alternative branch category ID (see Branch and Branch category) |
second_branch_id | Alternative branch (see Branch and Branch category) |
sector_id | Sector ID |
extent_id | Position type ID |
Example of the job post feed
api.recman.no/v1.php?key=YourKey&scope=job_post&fields=name,title,logo,place,
num_positions,deadline&type=json
Criteria for listing a job post
Criteria | Description |
---|---|
c_corporation_id | Corporation ID |
c_department_id | Department ID |
c_country_id | Country ID |
c_region_id | Region ID |
c_city_id | CityID |
c_portal_id | Job posting portal ID |
All of the criteria allow for different IDs.
Job post portals
This list contains the names and IDs of different portals available. This can be used should you wish to list job posts that have been posted on one or more portals.
&scope=portal_list
&fields=name
Example of job post portal listing
https://api.recman.no/v1.php?scope=portal_list&key=YOUR_ID&fields=name&type=json
iFrame job post feed
When using the iFrame option, you cannot define which fields are displayed in the feed. If you wish to define or style this feed, you will have to use our XML or JSON solution. This URL is put into an iFrame like this:
<iframe src=https://api.recman.no/i1.php?key=YourKey></iframe>
You have the option of defining which portals the job post feed should contain. For instance, you can add
https://api.recman.no/i1.php?key=YourKey&c_portal_id=2
to make a feed that contains job posts that should be posted on your internal web page (when the job post is created).
Usage example
In this example, we are going to look at how the data received from the API might look when fetching job posts.
api.recman.no/v1.php?type=json&key=YOUR_KEY&scope=job_post&fields=name,ingress,city,deadline
As you can see in the example, we are asking for job posts, more specifically, the name, ingress, location and deadline of your job posts.
The result gives us, in order, the job post ID, the name of the job post, the ingress, the city, the set deadline and the apply link. Both the job post ID and apply link are automatically included.
For developers
We have all API-related documentation gathered here https://developers.recman.no/.