Jobillico

The Network of Employers
 

JobIllico-API

This section explains how to remove a job posting

To remove a posting via the Jobillico API, the value "1" must be entered in node <bdeletejob>. You must always use the entry point https://www.jobillico.com/api/push.

Here are the nodes required to delete a job posting

<bdeletejob>
<ijob>

Example of Request :

<?xml version="1.0" encoding="utf-8"?>
<request>
    <oauth>
        <sparam><![CDATA[jobillico_user@jobillico.com]]></sparam>
        <sparam><![CDATA[jobillico_user_password]]></sparam>
    </oauth>
    <ocreator>
        <sparam><![CDATA[jobillico_user@jobillico.com]]></sparam>
    </ocreator>
    <job>
        <ijob><![CDATA[123456]]></ijob>
        <bdeletejob><![CDATA[1]]></bdeletejob>
    </job>
</request>

Response Obtained :

<?xml version="1.0" encoding="utf-8"?>
<results>
    <job>
        <srefnumber><![CDATA[JOB-12345]]></srefnumber>
        <ijob><![CDATA[123456]]></ijob>
        <status><![CDATA[Deleted]]></status>
    </job>
</results>