<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>
<div>Hello,</div><div><br></div><div>Is it possible to create a ticket through REST with a user which has no e-mail address ?</div><div><br></div><div>This doesn't work :</div><div><br></div><div>#!/usr/bin/env perl</div><div><br></div><div>use strict;</div><div><br></div><div>use RT::Client::REST;</div><div><br></div><div>my $rt = RT::Client::REST->new( server => 'http://myrtserver' );</div><div>$rt->login(username => 'user', password => 'password' );</div><div><br></div><div>$rt->create</div><div>(</div><div>  type => 'ticket',</div><div>  set =></div><div>  {</div><div>    requestor => 'rt_user', # user with no e-mail address</div><div>    queue => 'test',</div><div>    subject => 'test'</div><div>  },</div><div>  text => '1 2 1 2 this is a test'</div><div>);</div><div><br></div><div># the ticket is created without any requestor...</div><div><br></div>                                          </div></body>
</html>