I'm working with the Kernel::System::Ticket API as defined here:
http://otrs.github.io/doc/api/otrs/3.3/ ... et.pm.html
I'm getting the ticket as follows:
Code: Select all
$Self->{TicketObject} = Kernel::System::Ticket->new( %Param );
my %TicketInfo = $Self->{TicketObject}->TicketGet(
TicketID => $Param{Data}->{TicketID},
UserID => 1,
);
And I'm able to get information regarding that ticket using:
I can't help but notice that the Ticket object I'm returned does not contain the text body of the Ticket! I have poured through the API documentation and passed additional fields to the TicketGet() methods such as "DynamicFields => 0," and "Extended => 1,". However, I'm still unable to see how to retrieve what the person actually typed in the "Text" field of the ticket. I would expect something like:
But it is not there.... How can I get this field from the Ticket object that I'm pulling?
Thanks!