Each build in Avionté comes with an RSS feed URL. The URL will always start with https://www.mycompas.com/buildjobs_rss.aspx and end with a unique ID for your build.
The only data that we pass into your RSS feed includes:
• Job Category
• Job Title
• Job Location
• Job URL
A common use for the RSS feed is a “Newest Jobs” widget on a website’s homepage where your latest job postings can be seen by visitors without having to navigate to your Careers Page. If a visitor to the home page would like to apply for one of the jobs in that feed, they can simply click on the Job Title and they’ll be brought to the apply page of your Careers Page for that job.
The Technical Bits and Code Examples
For the technically-minded, here is an example of the code for a couple of jobs in a typical RSS feed.
<rss version="2.0">
<channel>
<title>Jobs at Avionté Corp Build</title>
<link>http://www.mycompas.com</link>
<description>
Jobs currently open at Avionté Corp Build - Powered by Avionté - www.mycompas.com
</description>
<item>
<category>Human Rescources</category>
<title>HR Generalist</title>
<location>Foster City</location>
<date>1/26/2015 2:17:08 PM</date>
<department>Human Resources</department>
<division>Executitve Team</division>
<link>https://corpdemo.mycompas.com/jobiframe.htm?cjobid=JU857456122842</link>
<jbname>Main Job Board</jbname>
<description>
Category: Human Resources - Location: Foster City
</description>
</item>
<item>
<category>Business Development</category>
<title>Sr. Business Developer</title>
<location>San Francisco</location>
<date>4/2/2014 4:43:17 PM</date>
<department/>
<division/>
<link>https://corpdemo.mycompas.com/jobiframe.htm?cjobid=RC325485865958</link>
<jbname>Main Job Board</jbname>
<description>
Category: Business Development - Location: San Francisco
</description>
</item>
</channel>
</rss>
Converting to XML
There is other data available if you convert the feed to non-RSS compliant XML by adding the string &format=xml to the end of the RSS feed URL. For example, if your RSS feed is this
https://www.mycompas.com/buildjobs_rss.aspx?ID=WgLAiv46hnck3aLvVfLXwg==
You can change it to standard XML by changing the URL to
https://www.mycompas.com/buildjobs_rss.aspx?ID= WgLAiv46hnck3aLvVfLXwg ==&format=xml