{"code": 200,"message": "Job searching results","meta": {"page": 1,"maxPage": 73,"count": 1,"total": 73},"data": {"jobs": [{"id": 4706,"key": "d224a0e830605ca7dddab20956624a1ca38d7e45","reference": "STO00002082","name": "ALTERNANT(E) MASTER ACHATS – SUPPLY CHAIN (F/H)","url": null,"summary": null,"sections": [...],"location": {"text": "France Île-de-France Bois-Colombes","lat": 48.913539999999998,"lng": 2.2673299999999998,"gmaps": null,"fields": []},"skills": [],"languages": [],"tags": [...],"ranges_float": [],"ranges_date": [],"updated_at": "2020-06-09T12:39:57+0000","created_at": "2020-04-07T17:39:52+0000"}]}}
{"code": 401,"message": "Unauthorized. Invalid secret key: xxxxx "}
from hrflow import Hrflowclient = Hrflow(api_secret="Your API Key", api_user="Your API user email")client.job.searching.list(board_keys=["board_key1", "board_key2"],name="data scientist", page=1, limit=10,order_by="asc", sort_by="created_at",text_keywords=["engineer", "python"],tags_included=[[{"name": "active", "value": True}]],location_distance=30,location_geopoint={"lat":33.59662,"lng":-7.61889})
import Hrflow from 'hrflow';const client = new Hrflow({api_secret: "Your API Key",api_user: "Your API user email"});client.job.searching.list(["board_key1", "board_key2"], {name: "data scientist",page: 1,limit: 10,order_by: "asc",sort_by: "created_at",text_keywords: ["engineer", "python"],tags_included: [[{name: "active", value: true}]],location_distance: 30,location_geopoint: {"lat":33.59662,"lng":-7.61889}});