Dave Cross: Still Munging Data With Perl: Online event - Mar 27 Learn more

#!/usr/bin/perl
#
# edit_custom_field.pl -- set one or more custom fields
use strict;
unless ( @ARGV >= 3 ) {
die "Usage: $0 username password ticket_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 $ticket = RT::Client::REST::Ticket->new(
rt => $rt,
id => shift(@ARGV),
);
my %opts = @ARGV;
while ( my ( $cf, $value ) = each(%opts) ) {
$ticket->cf( $cf, $value );
}
try {
$ticket->store;
}
catch {
die $_ unless blessed $_ && $_->can('rethrow');
if ( $_->isa('Exception::Class::Base') ) {
die ref($_), ": ", $_->message || $_->description, "\n";
}
};
print Dumper($ticket);