GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
RT::Client::REST::Attachment(3) User Contributed Perl Documentation RT::Client::REST::Attachment(3)

RT::Client::REST::Attachment - attachment object representation.

version 0.72

  my $attachments = $ticket->attachments;
  my $count = $attachments->count;
  print "There are $count attachments.\n";
  my $iterator = $attachments->get_iterator;
  while (my $att = &$iterator) {
      print "Id: ", $att->id, "; Subject: ", $att->subject, "\n";
  }

An attachment is a second-class citizen, as it does not exist (at least from the current REST protocol implementation) by itself. At the moment, it is always associated with a ticket (see parent_id attribute). Thus, you will rarely retrieve an attachment by itself; instead, you should use attachments() method of RT::Client::REST::Ticket object to get an iterator for all attachments for that ticket.

Numeric ID of the attachment.
Numeric ID of the user who created the attachment.
Numeric ID of the object the attachment is associated with. This is not a proper attribute of the attachment as specified by REST -- it is simply to store the ID of the RT::Client::REST::Ticket object this attachment belongs to.
Subject of the attachment.
Content type.
File name (if any).
Numeric ID of the RT::Client::REST::Transaction object this attachment is associated with.
Message ID.
Time when the attachment was created
Actual content of the attachment.
Headers (not parsed), if any.
Parent (not sure what this is yet).
Content encoding, if any.

RT::Client::REST::Attachment is a read-only object, so you cannot store() it. Also, because it is a second-class citizen, you cannot search() or count() it -- use attachments() method provided by RT::Client::REST::Ticket.

To retrieve an attachment, attributes id and parent_id must be set.

Wraps the normal can() call, to exclude unsupported methods from parent.
Returns 'attachment'.

Currently RT does not allow creating attachments via their API.

See <https://rt-wiki.bestpractical.com/wiki/REST#Ticket_Attachment>

RT::Client::REST::Ticket, RT::Client::REST::SearchResult.

Dean Hamstead <dean@fragfest.com.au>

This software is copyright (c) 2023, 2020 by Dmitri Tikhonov.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2025-07-15 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.