Please find below an example of json job that you can upload.
{"name": "Data Engineer","agent_key": null,"reference": "Job's reference abc","created_at": "2020-12-24T09:32:11","url": "https://www.pole-emploi.ai/jobs/data_engineer","summary": "As an engineer for the Data Engineering Infrastructure team,you will design, build, scale, and evolve our data engineeringplatform, services and tooling. Your work will have a criticalimpact on all areas of business: powering core data pipelines,supporting detailed internal analytics, calculating customerusage, securing our platform, and much more.","location": {"text": "Dampierre en Burly (45)","lat": 47.7667,"lng": 2.5167}},"sections": [{"name": "profile","title": "Searched Profile","description": "Bac+5"},...],"skills": [{"name": "python","value": null},{"name": "spark","value": 0.9},...],"languages": [{"name": "english","value": 1},{"name": "french","value": 1},...],"tags": [{"name": "archive","value": true},{"name": "tag example","value": "tag"},...],"ranges_date": [{"name": "Dates","value_min": "2020-05-18T21:59","value_max": "2020-09-15T21:59"},...],"ranges_float": [{"name": "salary","value_min": 30,"value_max": 40,"unit": "eur"},...],"metadatas": [{"name": "metadata example","value": "metadata"},...],}
You can include complementary information such as :
job's tags,
job's metadata.
{"code": 201,"message": "Job created","data": {"id": id,"key": "job_key","reference": "Job's reference 12","name": "Data Engineer","url": "https://www.pole-emploi.ai/jobs/data_engineer","summary": "As an engineer for the Data Engineering Infrastructure team, you will design, build, scale, and evolve our data engineering platform, services and tooling. Your work will have a critical impact on all areas of business: powering core data pipelines, supporting detailed internal analytics, calculating customer usage, securing our platform, and much more.","sections": [{"name": "profile","title": "Searched Profile","description": "Bac+5"}],"location": {"text": "Dampierre en Burly (45)","lat": null,"lng": null,"gmaps": null,"fields": null},"skills": [{"name": "python","value": null},{"name": "spark","value": 0.90000000000000002}],"languages": [{"name": "english","value": 1},{"name": "french","value": 1}],"tags": [{"name": "archive","value": true},{"name": "tag example","value": "tag"}],"ranges_float": [{"name": "salary","value_min": 30,"value_max": 40,"unit": "eur"}],"ranges_date": [{"name": "Dates","value_min": "2020-05-18T21:59","value_max": "2020-09-15T21:59"}],"updated_at": "2020-06-11T14:43:29+0000","created_at": "2020-06-11T14:43:29+0000"}}
{"code": 401,"message": "Unauthorized. Invalid secret key: xxxxx "}
from hrflow import Hrflow​client = Hrflow(api_secret="Your API Key", api_user="Your API user email")​job_json = {"name": "Data Engineer","agent_key": None,"reference": "123","created_at": "2020-12-24T09:32:11","url": "https://www.pole-emploi.ai/jobs/data_engineer","summary": """As an engineer for the Data Engineering Infrastructure team,you will design, build, scale, and evolve our data engineeringplatform, services and tooling. Your work will have a criticalimpact on all areas of business: powering core data pipelines,supporting detailed internal analytics, calculating customerusage, securing our platform, and much more.""","location": {"text": "Dampierre en Burly (45)","lat": 47.7667,"lng": 2.5167},"sections": [{"name": "profile","title": "Searched Profile","description": "Bac+5"}],"skills": [{"name": "python","value": None},{"name": "spark","value": 0.9}],"languages": [{"name": "english","value": 1},{"name": "french","value": 1}],"tags": [{"name": "archive","value": True},{"name": "tag example","value": "tag"}],"ranges_date": [{"name": "Dates","value_min": "2020-05-18T21:59","value_max": "2020-09-15T21:59"}],"ranges_float": [{"name": "salary","value_min": 30,"value_max": 40,"unit": "eur"}],"metadatas": [{"name": "metadata example","value": "metadata"}],}​client.job.indexing.add_json(board_key="board_key", job_json=job_json)
import Hrflow from 'hrflow';const client = new Hrflow({api_secret: "Your API Key",api_user: "Your API user email"});​client.job.indexing.addJosn("board_key", {"name": "Data Engineer","agent_key": None, #Scoring engine"reference": "123","created_at": "2020-12-24T09:32:11","url": "https://www.pole-emploi.ai/jobs/data_engineer","summary": "As an engineer for the Data Engineering Infrastructure team,you will design, build, scale, and evolve our data engineeringplatform, services and tooling. Your work will have a criticalimpact on all areas of business: powering core data pipelines,supporting detailed internal analytics, calculating customerusage, securing our platform, and much more.","location": {"text": "Dampierre en Burly (45)","lat": 47.7667,"lng": 2.5167},"sections": [{"name": "profile","title": "Searched Profile","description": "Bac+5"}],"skills": [{"name": "python","value": null},{"name": "spark","value": 0.9}],"languages": [{"name": "english","value": 1},{"name": "french","value": 1}],"tags": [{"name": "archive","value": true},{"name": "tag example","value": "tag"}],"ranges_date": [{"name": "Dates","value_min": "2020-05-18T21:59","value_max": "2020-09-15T21:59"}],"ranges_float": [{"name": "salary","value_min": 30,"value_max": 40,"unit": "eur"}],"metadatas": [{"name": "metadata example","value": "metadata"}],});