What is the getJobByJobId Method?

This method will retrieve a job from the Jobs App. Provide the ID number of a specific job and retrieve all details such as job description, industry, title, etc. This is used to display job details in your application.

Method Definition

@WebMethod(action = "getJobByJobId", operationName = "getJobByJobId")
public JobDetails getJobByJobId(String siteAuthenticationKey, String accessKey, Long jobId)

Expected Response

stdClass Object
(
[return] => stdClass Object
(
[fillByDate] => 2012-05-02T00:09:47.290-07:00
[firmId] => 34583
[industryId] => 16
[industryName] => Non Profit
[isFeatured] => Y
[jobDescription] =>
Job Description
[jobId] => 10308
[jobNumber] => 7
[jobStatusId] => 18876
[jobStatusName] => New
[jobTitle] => Job Title
[jobTypeId] => 16655
[jobTypeName] => Part Time
[statusCode] => 1000
[statusMessage] => Success
)
)

Back to API reference.