I have been asked to export all candidate data including candidate notes. All other data is fine but I return nothing for notes.
Has anyone done this or know of a way to do it?
Thanks
Candidate notes
Moderators: StaffingSupport, s.emmons, BullhornSupport
-
- User
- Posts: 89
- Joined: Fri Nov 20, 2015 2:04 pm
Re: Candidate notes
Here is the PHP I use (using my Bullhorn library).
That returns all the related notes of the candidate. Feel free to ask for further clarification.
-DaveNorthCreek
Code: Select all
$id = $candidate->get("id");
$query_note_url = $this->base_url."entity/Candidate/$id/notes";
$query_note_uri = $this->service->getRestUri($query_note_url, $this->session_key, ['fields'=>'id,comments,action']);
$query_note = $this->retrieveResponse($query_note_uri, '', [], 'GET');
-DaveNorthCreek