<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Recent Posts in Problem with Dynamic Ticket Reports | Unfuddle Community</title>
    <link>http://unfuddle.com/community</link>
    <description>Unfuddle Community Forums</description>
    <item>
      <guid isPermaLink="false">www.unfuddle.com/community:6:718:1961</guid>
      <title>Problem with Dynamic Ticket Reports posted by Dave K. @ Thu, 06 Aug 2009 14:08:21 UTC</title>
      <link>http://www.unfuddle.com/community/forums/6/topics/718</link>
      <description>I'm using PHP/cURL to send an HTTP/GET request via cURL to the api/v1/ticket_reports/dynamic service.  I'm sending an XML payload similar to the following:

&lt;request&gt;&lt;title&gt;testing&lt;/title&gt;&lt;group-by&gt;project&lt;/group-by&gt;&lt;sort-by&gt;created_at&lt;/sort-by&gt;&lt;fields-string&gt;number&lt;/fields-string&gt;&lt;conditions-string&gt;status-neq-Resolved&lt;/conditions-string&gt;&lt;/request&gt;

The report I get back appears to not have the requested modifications applied.  Am I doing something wrong?</description>
      <pubDate>Thu, 06 Aug 2009 14:08:21 UTC</pubDate>
      <author>Dave K.</author>
    </item>
    <item>
      <guid isPermaLink="false">www.unfuddle.com/community:6:718:1962</guid>
      <title>Problem with Dynamic Ticket Reports replied by Dave K. @ Thu, 06 Aug 2009 18:52:35 UTC</title>
      <link>http://www.unfuddle.com/community/forums/6/topics/718</link>
      <description>It seems like the request is completely ignoring any parameters that I send other than title.  If I send the xml payload, it ignores everything.  If I use the URL method, it only uses the title parameter.  Surely this isn't a problem with what I'm doing?  If it is, I'm happy to know what it is. :)</description>
      <pubDate>Thu, 06 Aug 2009 18:52:35 UTC</pubDate>
      <author>Dave K.</author>
    </item>
    <item>
      <guid isPermaLink="false">www.unfuddle.com/community:6:718:2000</guid>
      <title>Problem with Dynamic Ticket Reports replied by David C. @ Thu, 27 Aug 2009 01:13:18 UTC</title>
      <link>http://www.unfuddle.com/community/forums/6/topics/718</link>
      <description>Dave,

Here are two ways to request the same report using curl from the command line:

1) Using the query string method:

@curl -i -u myusername:password -X GET -H 'Accept: application/xml' 'https://mysubdomain.unfuddle.com/projects/12345/ticket_reports/dynamic.xml?title=Closed+Tickets&amp;conditions_string=status-eq-closed'@

2) Sending XML with the request:

@curl -i -u myusername:password -X GET -H 'Content-type: application/xml' -H 'Accept: application/xml' -d &quot;&lt;request&gt;&lt;title&gt;Closed Tickets&lt;/title&gt;&lt;conditions-string&gt;status-eq-closed&lt;/conditions-string&gt;&lt;/request&gt;&quot; 'https://mysubdomain.unfuddle.com/projects/12345/ticket_reports/dynamic.xml'@

You should note that if you are sending XML with the request, you need to specify the content-type header in your request so the request body is handled correctly.</description>
      <pubDate>Thu, 27 Aug 2009 01:13:18 UTC</pubDate>
      <author>David C.</author>
    </item>
  </channel>
</rss>

