Skip to main content

Job section

The <job> element of the XML consists of multiple Core Fields that make up the essential Job object inside the idibu system.

This block only applies to the Add, Repost, and Clone methods.

For the repost and clone methods, the <job> element requires an additional id attribute that identifies the existing Job.

Fields description

XML elementType restrictionsRequired?Notes
titleStringYes
Minimum 5 characters
The title of the Job.
referenceString (alphanumeric)Yes
Minimum 4 characters
The reference code of the Job.
Ideally, should be unique per Client account.
Cannot be changed on repost.
descriptionStringYes
Minimum 200 characters
The full main body of the Job, HTML supported.
Provide one block of text and avoid plain-text newlines - encode them as <br/> instead.
Refer to this article for more info.
startdateDate

Format: YYYY-MM-DD
YesWhen the candidate will start working.
durationStringNoHow long will the candidate's work arrangement last.
salaryminNumber
Up to two decimals allowed
YesThe minimum salary.
salarymaxNumber
Up to two decimals allowed
Must be equal to or greater than salarymin
YesThe maximum salary.
salaryper:valueString (enum)

Accepted values:
annum
month
week
day
hour
YesThe pay cycle for the remuneration package.
Must be provided as a value attribute of the <salaryper> element.
salaryextrasStringNoExtra benefits.
currencyString (enum)

Accepted values obtainable via the currencies/available call
YesThe ISO-3 currency code.
Use the custom-currencies webservice to control and obtain the available ones for the given Client account.
jobtype:idInteger (enum)

Accepted values:
1 - Contract
2 - Permanent
4 - Temporary
YesEmployment type.
Must be provided as an id attribute of the <jobtype> element.
job_timeInteger (enum)

Accepted values:
1 - Part-time
2 - Full-time
YesWorking hours.
category:idInteger (enum)

Accepted values available here
Yesidibu's core industry code.
Must be provided as an id attribute of the <category> element.
location:idString (enum)

Accepted values available here
Yesidibu's core two-letter country code.
Must be provided as an id attribute of the <location> element.
sublocation:idInteger

Accepted values obtainable via the locations/find call
Yesidibu's core location ID.
Only locations that belong under the country code specified in the location field will be accepted.
Must be provided as an id attribute of the <sublocation> element.
publishDate and time

Format: YYYY-MM-DD or YYYY-MM-DD HH:mm
NoYou can queue the Posts to be sent out to Portals in the future; otherwise, they will be queued for immediate posting.
Please note that the timestamp must be provided in London time.
app_urlString (URL)NoURL of an external page to which candidates will be redirected instead of using the Portal's default application functionality.
This is a Dynamic Core Field.
salaryOverrideStringNoTextual description of the salary. On most Portals, this will replace the display of the full salary information while still utilising the other salary fields for search.
This is a Dynamic Core Field.
startDateOverrideStringNoTextual description of when the candidate would begin working. On most Portals, this will replace the date provided in the startdate Core Field.
This is a Dynamic Core Field.
sender:idString (enum)

Accepted values obtainable via the User Management webservice
YesEither a standalone <sender> element with an id attribute (recommended); or a parent element (see the Sender info section for more details).
Cannot be changed on repost.

Format

  <job id="[integer]"> <!-- include the id attribute only for the 'repost' and 'clone' methods -->
<title>[string]</title>
<reference>[string]</reference>
<description>[string]</description>
<startdate>[string:date]</startdate>
<duration>[string]</duration>
<salarymin>[string:numeric]</salarymin>
<salarymax>[string:numeric]</salarymax>
<salaryper value="[annum|hour|day|week|month]"/>
<salaryextras>[string]</salaryextras>
<currency>[string:iso3]</currency>
<jobtype id="[1|2|4]"/>
<job_time>[1|2]</job_time>
<category id="[integer]"/>
<location id="[integer]"/>
<sublocation id="[integer]"/>
<publish>[string:date]</publish>
<app_url>[string:url]</app_url>
<salaryOverride>[string]</salaryOverride>
<startDateOverride>[string]</startDateOverride>
<sender id="[integer]"/>
</job>

Example

  <job id="12345">
<title><![CDATA[Job Title]]></title>
<reference><![CDATA[WH6-QRD]]></reference>
<description><![CDATA[Job<br/>Description]]></description>
<startdate>2025-07-01</startdate>
<duration>1 month</duration>
<salarymin>12.34</salarymin>
<salarymax>56.78</salarymax>
<salaryper value="hour"/>
<salaryextras><![CDATA[Job benefits]]></salaryextras>
<currency>USD</currency>
<jobtype id="1"/>
<job_time>2</job_time>
<category id="31"/>
<location id="GB"/>
<sublocation id="1024195"/>
<publish>2025-06-15</publish>
<app_url><![CDATA[https://www.idibu.com]]></app_url>
<salaryOverride><![CDATA[Textual salary override]]></salaryOverride>
<startDateOverride><![CDATA[Textual start date override]]></startDateOverride>
<sender id="56789"/>
</job>