Bullhorn API Integration Issues - Category listing

Discussion in 'PHP' started by yoursanjay, Jul 30, 2011.

  1. #1
    Hello,
    I have been working on Bullhorn Jobboard API integration for a website and facing some problems. Bullhorn does not have any good technical support except their forum. So, I am here with my issues. Hope anyone has experience with Bullhorn API integration with PHP.
    ------------------------------------------------------------------------------------
    Please check this URL
    http://headerguru.com/projects/sandbox/bullhorn/category_list.php
    Here I have tried to fetch current active job categories.
    1. In the list you can see '2006' is added before the category names in maximum cases. I think '2006' is the PLID. I want to remove this from the category names. So, what will I have to write to remove PLID?
    Here is the category listing final codes
    
       <?php foreach($findResult->return->dtos as $value):?>
       <?php echo $value->name; ?>
       <?php endforeach?>
     
    PHP:
    I created an array with Query parameters as follows:
    
       $query_array = array(
       'entityName' => 'Category',
        'maxResults' => 20,
        'parameters' => array()
       );
    
    PHP:
    2. I have set to display maximum results 20 numbers at a time. But if I have to show more than 20 it is not working, showing me an error message. So, what should I do in this case?

    3. The last 2 categories names are not in my bullhorn system. So what are they coming form?

    4. If I want to display the search job result in a same page of my website, then what are the steps? Is there any sample code for displaying job search result in the same page?
    ** I mainly want to display all the form functionality of this page [http://public.bullhornstaffing.com/JobBoard/Standard/BHContent_JobOpportunities.cfm] on a new website page so that the page does not redirect to public.bullhornstaffing.com

    Waiting for your reply.

    Thanks,
    Sanjay
     
    yoursanjay, Jul 30, 2011 IP
  2. yoursanjay

    yoursanjay Member

    Messages:
    42
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #2
    Hello,
    Is my issue quite confusing?
     
    yoursanjay, Aug 1, 2011 IP