{"code": 200,"message": "Profiles list","page": 1,"max_page": 1,"count": 1,"total": 1,"data": {"profiles": [{"date_creation": "2019-01-15T12:09:58","date_reception": "2019-01-15T12:09:42","educations": [{"description": "Hogwarts School of Witchcraft and Wizardry","end_date": {...},"id": "education_id","location": {...}},"school": "Hogwarts","start_date": {...},"title": "MASTER IN APPLIED MATHEMATICS AND SIGNAL PROCESSING"},...],"educations_duration": n,"email": {"text": "harry.potter@gmail.com"},"experiences": [{"company": "Gryffindor","description": "Chemistry – Potioneer.","end_date": {....},"id": "experience_id","location": {...},},"start_date": {...},"title": "Machine Learning Engineer"},...],"experiences_duration": 1.2547945205479452,"interests": [{"name": "Psychology","value": null}],"labels": [{"date_rating": "2019-07-15T14:51:07","date_stage": "2019-07-15T14:51:07","job_id": "job_id","job_reference": "19051996","rating": null,"stage": "yes"}],"languages": [{"name": "english","value": null},{"name": "french","value": null}],"location": {...},"name": {"first_name": "Harry","last_name": "Potter","text": "Harry Potter"},"profile_id": "profile_id","skills": [{"is_predicted": false,"name": "Chemistry","type": "hard_skill","value": null},],"source_id": "source_id","summary": "Bayesian Optimization","team_id": "team_id","text": {...},"urls": {"facebook": null,"from_resume": [],"github": null,"linkedin": null,"picture": null,"twitter": null},"uuid": "uuid"}],"predictions": [[0.49184858798980713,0.50815147161483765]]}}
{"code": 400,"message": "Bad Request. Invalid source ids"}
{"code": 401,"message": "Unauthorized. Invalid secret key: xxxxx "}
$client = new Hrflow\Client('your secret key');$params = ['use_agent' => 1,'stage' => 'yes','limit' => 10,'page' => 1,'order_by' => 'asc','sort_by' => 'created_at','timestamp_start' => 1569320033,'timestamp_end' => 1586945633,'name' => 'name','email' => 'exemple@exemple.com','location_geopoint' => ['lat' => '357516600','lng' => '10.7110900',],'location_distance' => 40,'summary_keywords' => ['keyword1', 'keyword2',...],'text_keywords' => ['keyword1', 'keyword2',...],'experience_keywords' => ['keyword1', 'keyword2',...],'experience_location_geopoint' => ['lat' => '357516600','lng' => '10.7110900',],'experience_location_distance' => 40,'experiences_duration_min' => 3,'experiences_duration_max' => 7,'skills_dict' => ['skill1', 'skill2', ...],'languages_dict' => ['lang1',..],'interests_dict' => ['interest1', 'interest2',...],'tags_dict' => ['tag1', 'tag2', ...],]$client->profile->searching->get($source_ids, $job_id, $params);
from hrflow import Hrflowclient = Hrflow(api_secret="Your API Key", api_user="Your API user email")client.profile.scoring.list(source_keys=["source_key1", "source_key2"],board_key="board_key", job_key="job_key", use_agent= 1,stage="new", limit= 10, page= 1, order_by= 'asc',sort_by='created_at', created_at_min='2020-05-15T23:59:59.999Z',created_at_max='2020-07-15T23:59:59.999Z', name='name',email='exemple@exemple.com',location_geopoint={'lat':'357516600','lon':'10.7110900',},location_distance=40,summary_keywords=["keyword1", "keyword2"],text_keywords=["keyword1", "keyword2"],experience_keywords=["keyword1", "keyword2"],experience_location_geopoint={'lat': 35.7516600,'lon': 10.7110900',},experience_location_distance=40,experiences_duration_min=3,experiences_duration_max=7,skills=[{"name": "python", "value": 0.9}],languages=[{"name": "english", "value": "fluent"}],interests=[{"name": "design", "value": 1}],tags_included=[{"name": "active", "value":True}])
import Hrflow from 'hrflow';const client = new Hrflow({api_secret: "Your API Key",api_user: "Your API user email"});client.profile.scoring.list(['source_key1', 'source_key2'], "board_key","job_key", {use_agent: 1,stage: 'new,limit: 10,page: 1,order_by: 'asc',sort_by: 'created_at',created_at_min: '2020-05-15T23:59:59.999Z',created_at_max: '2020-07-15T23:59:59.999Z',name: 'name',email: 'exemple@exemple.com',location_geopoint: {lat: '357516600',lon: '10.7110900',},location_distance: 40,summary_keywords: ['keyword1', 'keyword2'],text_keywords: ['keyword1', 'keyword2'],experience_keywords: ['keyword1', 'keyword2'],experience_location_geopoint: {lat: '357516600',lon: '10.7110900',},experience_location_distance: 40,experiences_duration_min: 3,experiences_duration_max: 7,skills: [{name: 'python', value: 0.9}],languages: [{name: 'english', value: 'fluent'}],interests: [{name: 'design', value: 1}],tags: [{name: 'active', value: true}],});