- Edited
I would like to see some kind of easily parse able xml feed so that an external program can run in the background to warn support personnel of new tickets etc. I was thinking of something like the following.
<?xml version="1.0" standalone="yes"?>
<tickets>
<unassigned>
<new>3</new>
<old>3</old>
</unassigned>
<assigned>
<user id="5">
<new>0</new>
<old>1</old>
</user>
<user id="11">
<new>1</new>
<old>6</old>
</user>
<user id="14">
<new>0</new>
<old>2</old>
</user>
</assigned>
<total>
<new>4</new>
<old>12</old>
</total>
</tickets>