From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!/usr/bin/perl
#
# edit_ticket.pl -- edit an RT ticket.
use strict;
unless ( @ARGV >= 3 ) {
die "Usage: $0 username password user_id [key-value pairs]\n";
}
my $rt =
RT::Client::REST->new( server => ( $ENV{RTSERVER} || 'http://rt.cpan.org' ),
);
$rt->login(
username => shift(@ARGV),
password => shift(@ARGV),
);
my $user = RT::Client::REST::User->new(
rt => $rt,
id => shift(@ARGV),
@ARGV,
)->store;
print Dumper($user);