Retrieving a Job

To retrieve a single job, send an authorised HTTP GET request to the following URL replacing the {jobId} with the job id you require:

GET https://core.ws.efinancialcareers.com/v1/jobs/{jobid}

You can also retrieve a job with all its human-readable values which we call translations. To do this append the locale at the end of the GET job URL:

GET https://core.ws.efinancialcareers.com/v1/{jobid}?locale=en

Mandatory HTTP headers

Content-Type: application/xml

Authorization: EfcAuth realm=”EFC”, token=”522c3c4bd036a69db428ce4274745e9d”

Upon success, the server responds with HTTP 200 OK status code and an XML representation of the job in the response body:

<href="https://core.ws.efinancialcareers.com/v1/jobs/57" xsi:schemaLocation="http://efinancialcareers.com/schema https://core.ws.efinancialcareers.com/v1/schema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

    <id>57</id>

    <version>1</version>

    <defaultDescription lang=”EN”>

        <title>Senior Java Developer</title>

        <description>Updated – A leading online company are looking for an <strong> exceptional Java developer </strong> to join them to work on a new greenfield project.</description>

        <summary>Updated – Java developer – greenfield project in London UK.</summary>

        <salaryDescription>£60,000 basic + benefits + bonus</salaryDescription>

        <minSalary>11111</minSalary>

        <maxSalary>22222</maxSalary>

    </defaultDescription>

    <multiLangDescription/>

    <positionType>PERMANENT</positionType>

    <employmentType>FULL_TIME</employmentType>

    <workArrangementType>HYBRID</workArrangementType>

     <user href=”https://core.ws.efinancialcareers.com/v1/users/13″>

        <refId>13</refId>

    </user>

    <company href=”https://core.ws.efinancialcareers.com/v1/companies/2″>

        <refId>2</refId>

    </company>

    <location href=”https://core.ws.efinancialcareers.com/v1/locations/2643743″>

        <refId>2643743</refId>

    </location>

    <brand href=”https://core.ws.efinancialcareers.com/v1/brands/2″>

        <refId>2</refId>

    </brand>

    <team href=”https://core.ws.efinancialcareers.com/v1/teams/3″>

        <refId>3</refId>

    </team>

    <primarySector>

        <sectorCode>INFORMATION_TECHNOLOGY</sectorCode>

        <subSectorCode>INFORMATION_TECHNOLOGY__DEVELOPMENT</subSectorCode>

    </primarySector>

    <applicationMethod>WEB_LINK</applicationMethod>

    <customExpirationDt>2025-05-12Z</customExpirationDt>

    <applicationLink>http://www.example.com/apply</applicationLink>

    <created>2011-11-22T17:17:50.760Z</created>

    <updated>2011-11-22T17:18:03.762Z</updated>

</job>