What is the getAllJobsWithStatus Method?

This method will retrieve a job from the Jobs App. Provide a job status and retrieve a list of matching jobs. This is used to search and identify jobs to display in your application.

Method Definition

@WebMethod(action = "getAllJobsWithStatus", operationName = "getAllJobsWithStatus")
public HrJobSearchResultsHelper getAllJobsWithStatus(String siteAuthenticationKey, String accessKey, String getFeaturedJobsOnly, String maxCount, String offset, String sortBy, String[] statuses)

Expected Response

stdClass Object
(
[return] => stdClass Object
(
[jobDetails] => Array
(
[0] => stdClass Object
(
[docType] => jobdetails
[firmId] =>
[id] => 10308
[idName] => jobId
[categoryId] =>
[categoryName] =>
[dateCreated] => 05/02/2012
[datePublished] => 05/02/2012
[fillByDate] => 05/02/2012
[industryDisplayName] => Non Profit
[industryId] => 16
[industryName] => Non Profit
[isContractToHire] =>
[isEnabled] =>
[isFeatured] => Y
[jobDescription] =>Job Description – update
[jobId] => 10308
[jobNumber] => 7
[jobStatusCode] => NEW
[jobStatusId] => 18876
[jobStatusName] => New
[jobTitle] => Job Title - Update
[jobTypeCode] => PART_TIME
[jobTypeId] => 16655
[jobTypeName] => Part Time
[searchText] => 7 Job Title - Update Job Description – update Part Time New
)
)
[numResults] => 1
[statusCode] => 1000
[statusMessage] => Success
)
)

Back to API reference.