Hi all,
I'm trying to display information from an XML feed into a Modern SharePoint page.
We have an Application Tracking System (ATS), which generates an XML feed (source code below). This feed is updated whenever an HR person publishes a new vacancy or unpublishes a vacancy in the ATS. I would like to display the information in the XML feed in our internal SharePoint page (intranet). I'm the owner of that SharePoint and seem to be able to add an RSS feed but this is not the same as my XML feed and does not work.
I've researched extensively and not finding a solution. It should be possible as I use the XML feed for other non-SharePoint tools that just pick up the information from the XML feed and display them on their page. I'm not the most technical savy person but can pick up anything, so if anyone has a solution to this would be much appreciated!
Thanks
Source code for the XML Feed
<?xml version="1.0" encoding="UTF-8"?>
<source>
<publisherurl>Company Name</publisherurl>
{{each job}}
<job>
<title><![CDATA[[job.jobtitle]]]></title>
<date><![CDATA[[job.publisheddate]]]></date>
<referencenumber><![CDATA[[job.id.link]]]></referencenumber>
<url><![CDATA[[job.link]]]></url>
<company><![CDATA[[job.department.company]]]></company>
<country><![CDATA[[job.country]]]></country>
<city><![CDATA[[job.department.city]]]></city>
<state><![CDATA[[job.department.stateprovinceregion]]]></state>
<location><![CDATA[[job.location]]]></location>
<description><![CDATA[[job.ad.text]]]></description>
<education><![CDATA[[job.educational_level]]]></education>
<jobtype><![CDATA[[job.employment_type]]]></jobtype>
<category><![CDATA[[job.publishing.categorie]]]></category>
<experience><![CDATA[[job.job_experience_level]]]></experience>
<id><![CDATA[[job.number]]]></id>
<unit><![CDATA[[job.unit]]]></unit>
</job>
{{/each job}}
</source>