I&#39;m developing a port of module RT::Client::Rest in C++, and I&#39;m in trouble with ticket actions (take, steal, untake), <br>
Login, Logout, Get Ticket and Search are ok.<br>
Reading the original code in Perl, I found that in RT::Client::Rest any of this ticket actions are done by the post<br>
of a multipart/form-data to URL&nbsp;
<a href="http://rtserver/REST/1.0/ticket/1/take">http://rtserver/REST/1.0/ticket/1/take</a> with one parameter named content
and &quot;Action: take&quot; as its value,<br>
but I&#39;m getting this response :<br>
RT/3.4.5 409 Syntax Error<br>
<br>
# action: Unknown field.<br>
<br>
id:<br>
Action: take<br>
<br>
What are the correct post parameters to use with RT REST interface?<br>
<br>
Thanks in advance.<br>
<br>