How Can We Help?
Print

Getting a List of Jobs on Your Careers Page

The following is an example of how to retrieve a list of all the jobs listed on your Careers page. For this example we have created three sample job listings (yours will be in the admin interface at https://YOURCOMPANY.applicant-tracking.com):

Job Listings

Here is an example of the payload returned for each listing:

[
 {
   “id”: 1,
   “company_id”: 1,
   “job_code”: 1000000,
   “title”: “Job Title”,
   “abstract”: “abstract string”,
   “description”: “description goes here”,
   “city”: “City”,

   “state”: “State”,
   “country”: “United States”,

   “archived”: false,

   “hidden”: false,

   “url”: “https://YOURCOMPANY.applicant-tracking.com”,

   “created_at”: “2018-02-07T16:53:11Z”,

   “applicants”: 83,

   “new_applicants”: 23
 }
]

Getting a list of all the Jobs on our site

Using Postman

  • We’ll use the GET method with the request URL: https://api.hiringthing.com/api/v1/jobs
  • Under Headers area put in the following column values:
    • Key: Content-type
    • Value: application/json
  • Hit Send, and within the Body frame you will see a full payload of the three jobs in our example:

 

cURL Commands

curl -u YOUR_KEY https://api.applicant-tracking.com/api/v1/jobs -H "Content-Type: application/json"

Here’s an example output of the full payload for the three jobs:

{

       “id”: 63707,

       “company”: “your_company”,

       “job_code”: “1212”,

       “title”: “Front Room Sales Rep – 25 days”,

       “abstract”: ” <strong>Duties include, but are not limited to, the following:</strong>     Understands automobiles by studying characteristics, capabilities, and features; comparing and contrasting compet  …”,

       “description”: “<p><strong>Duties include, but are not limited to, the following:</strong></p><ul>  <li>Understands automobiles by studying characteristics, capabilities, and features; comparing and contrasting competitive models; inspecting automobiles.</li>  <li>Develops buyers by maintaining rapport with previous customers; suggesting trade-ins; meeting prospects at community activities; greeting drop-ins; responding to inquiries; recommending sales campaigns and promotions.</li>  <li>Qualifies buyers by understanding buyer’s requirements and interests; matching requirements and interests to various models; building rapport.</li> <li>Demonstrates automobiles by explaining characteristics, capabilities, and features; taking drives; explaining warranties and services.</li>  <li>Closes sales by overcoming objections; asking for sales; negotiating price; completing sales or purchase contracts; explaining provisions; explaining and offering warranties, services, and financing; collects payment; delivers automobile.</li> <li>Provides sales management information by completing reports.</li>  <li>Updates job knowledge by participating in educational opportunities; reading professional publications.</li> <li>Enhances dealership reputation by accepting ownership for accomplishing new and different requests; exploring opportunities to add value to job accomplishments.</li></ul>”,

       “city”: “Bethpage”,

       “state”: “NY”,

       “country”: “United States”,

       “archived”: false,

       “hidden”: false,

       “url”: “http://ht-jobs.net/jvv0w2t”,

       “created_at”: “2018-02-07T16:53:11Z”,

       “applicants”: 83,

       “new_applicants”: 23

   },

   {

       “id”: 63705,

       “company”: “your_company”,

       “job_code”: “1234”,

       “title”: “Mechanic – 40 days”,

       “abstract”: ” We are looking for a skilled Mechanic to assemble, maintain and repair machinery and vehicles. You will be responsible for ensuring functionality and reliability of machines, engines and mechanical  …”,

       “description”: “<p>We are looking for a skilled Mechanic to assemble, maintain and repair machinery and vehicles. You will be responsible for ensuring functionality and reliability of machines, engines and mechanical systems.An excellent mechanic must have manual dexterity and great attention to detail. They must be able to work with various machines and tools as well as follow all safety precautions.</p><p><strong>Duties and Responsibilities</strong></p><ul>  <li>Build and assemble machines or mechanical components according to requirements</li> <li>Inspect machines, engines, transmissions etc. and run diagnostic tests to discover functionality issues</li> <li>Conduct repairs aiming for maximum reliability</li> <li>Troubleshoot reported problems and resolve them in a timely manner</li> <li>Perform thorough maintenance on machinery, equipment and systems</li> <li>Clean and apply lubricants to machinery components</li>  <li>Replenish fluids and components of engines and machinery</li> <li>Provide consultation on correct maintenance and preventative measures to machine or vehicle users</li> <li>Undertake other duties as assigned (e.g. repair of hydraulic systems, painting vehicles etc.)</li> <li>Keep logs of work and report on issues</li></ul>”,

       “city”: “Powhatan”,

       “state”: “VA”,

       “country”: “United States”,

       “archived”: false,

       “hidden”: false,

       “url”: “http://ht-jobs.net/475gy2p”,

       “created_at”: “2018-01-23T22:04:51Z”,

       “applicants”: 107,

       “new_applicants”: 30

   },

   {

       “id”: 63708,

       “company”: “your_company”,

       “job_code”: “9847”,

       “title”: “Sales Manager – 60 days”,

       “abstract”: ” <strong>Duties include, but are not limited to, the following:</strong>     Determines annual unit and gross-profit plans by implementing marketing strategies; analyzing trends and results.  …”,

       “description”: “<p><strong>Duties include, but are not limited to, the following:</strong></p><ul>  <li>Determines annual unit and gross-profit plans by implementing marketing strategies; analyzing trends and results.</li>  <li>Establishes sales objectives by forecasting and developing annual sales quotas for regions and territories; projecting expected sales volume and profit for existing and new products.</li>  <li>Implements national sales programs by developing field sales action plans.</li> <li>Maintains sales volume, product mix, and selling price by keeping current with supply and demand, changing trends, economic indicators, and competitors.</li>  <li>Establishes and adjusts selling prices by monitoring costs, competition, and supply and demand.</li> <li>Completes national sales operational requirements by scheduling and assigning employees; following up on work results.</li> <li>Maintains national sales staff by recruiting, selecting, orienting, and training employees.</li>  <li>Maintains national sales staff job results by counseling and disciplining employees; planning, monitoring, and appraising job results.</li> <li>Maintains professional and technical knowledge by attending educational workshops; reviewing professional publications; establishing personal networks; participating in professional societies.</li>  <li>Contributes to team effort by accomplishing related results as needed.</li></ul>”,

       “city”: “Indiana”,

       “state”: “PA”,

       “country”: “United States”,

       “archived”: false,

       “hidden”: false,

       “url”: “http://ht-jobs.net/4qq6t3l”,

       “created_at”: “2018-02-15T16:56:00Z”,

       “applicants”: 25,

       “new_applicants”: 6

   }


Table of Contents