<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>JSON response not compatible with native conversion functions</title><link>https://community.appian.com/discussions/f/integrations/14540/json-response-not-compatible-with-native-conversion-functions</link><description>I am using the Quandl API to return commodity price data. The integration is not able to convert the response body into an appian value, and a!toJson / a!fromJason are not able to handle the text input either. 
 The result of the body is as follows: </description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: JSON response not compatible with native conversion functions</title><link>https://community.appian.com/thread/65224?ContentTypeID=1</link><pubDate>Mon, 18 Mar 2019 19:38:29 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:dfe2ccd2-6665-4249-8996-114cf6fa9491</guid><dc:creator>justinp821</dc:creator><description>a!jsonPath is a new function for me. Thank you, I&amp;#39;ll definitely make use of that in the future. For this scenario, it returns a single text string which unfortunately doesn&amp;#39;t really do much.  I ended up using keyval() to strip the text I need.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: JSON response not compatible with native conversion functions</title><link>https://community.appian.com/thread/65223?ContentTypeID=1</link><pubDate>Mon, 18 Mar 2019 19:17:21 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:23153538-4a6f-4727-8fda-2c72cd5c4427</guid><dc:creator>Shyam Bommakanti</dc:creator><description>&lt;p&gt;Seems like list of lists if not supported by a!fromJSON&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;Expression evaluation error at function a!fromJson [line 7]: Cannot transform input in to an Appian type because it contains a list of lists.&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;See if you can structure the JSON more at the source so that JSON doesn&amp;#39;t have the list of lists. And, to parse JSON use a!jsonPath, should work for list of lists.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!jsonPath(
  ri!yourJson,
  &amp;quot;dataset_data.data&amp;quot;
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>