<div dir="ltr"><div>There are a couple of ways around that.<br></div><div><br></div><div>1. Search for that record id, for example: <a href="http://10.100.102.38:3000/api/rest/general/members?limit=3&amp;list_returns=holder1&amp;list_returns=member_id&amp;search.member_id=368">http://10.100.102.38:3000/api/rest/general/members?limit=3&amp;list_returns=holder1&amp;list_returns=member_id&amp;search.member_id=368</a></div><div><br></div><div>2. If it&#39;s a primary key or a unique key, you can easily fetch it: <a href="http://10.100.102.38:3000/api/rest/general/members/368">http://10.100.102.38:3000/api/rest/general/members/368</a></div><div><br></div><div>Best regards,</div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Feb 28, 2017 at 3:48 PM, Rajesh Kumar Mallah <span dir="ltr">&lt;<a href="mailto:mallah@redgrape.tech" target="_blank">mallah@redgrape.tech</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
<br>
I am trying to use  Catalyst::Controller::DBIC::<wbr>API::REST<br>
to feed jtable with JSON<br>
<br>
Eg :<br>
<br>
the request<br>
<br>
<a href="http://10.100.102.38:3000/api/rest/general/members?limit=3&amp;list_returns=holder1&amp;list_returns=member_id" rel="noreferrer" target="_blank">http://10.100.102.38:3000/api/<wbr>rest/general/members?limit=3&amp;<wbr>list_returns=holder1&amp;list_<wbr>returns=member_id</a><br>
<br>
Leads to response:<br>
<br>
<br>
{<br>
  &quot;Records&quot;: [<br>
    {<br>
      &quot;member_id&quot;: 366,<br>
      &quot;holder1&quot;: &quot;Jinesh&quot;<br>
    },<br>
    {<br>
      &quot;member_id&quot;: 367,<br>
      &quot;holder1&quot;: &quot;Gita&quot;<br>
    },<br>
    {<br>
      &quot;member_id&quot;: 368,<br>
      &quot;holder1&quot;: &quot;Sheela&quot;<br>
    }<br>
  ],<br>
  &quot;Result&quot;: &quot;OK&quot;<br>
}<br>
<br>
<br>
The url contains the parameter &#39;limit&#39; as i configured count_arg as &#39;limit&#39;<br>
I need a simple example on how to pass the search param<br>
<br>
eg i want to recordset to be restricted to member_id=&gt; 368<br>
<br>
<br>
could anyone kindly help.<br>
I have done my research before approaching this list.<br>
<br>
<br>
regds<br>
mallah.<br>
<br>
<br>
<br>
<br>
<br>
______________________________<wbr>_________________<br>
List: <a href="mailto:Catalyst@lists.scsys.co.uk">Catalyst@lists.scsys.co.uk</a><br>
Listinfo: <a href="http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst" rel="noreferrer" target="_blank">http://lists.scsys.co.uk/cgi-<wbr>bin/mailman/listinfo/catalyst</a><br>
Searchable archive: <a href="http://www.mail-archive.com/catalyst@lists.scsys.co.uk/" rel="noreferrer" target="_blank">http://www.mail-archive.com/<wbr>catalyst@lists.scsys.co.uk/</a><br>
Dev site: <a href="http://dev.catalyst.perl.org/" rel="noreferrer" target="_blank">http://dev.catalyst.perl.org/</a><br>
</blockquote></div><br></div></div>