Scroll to navigation

RT::Client::REST::Group(3pm) User Contributed Perl Documentation RT::Client::REST::Group(3pm)

NAME

RT::Client::REST::Group - group object representation.

VERSION

version 0.72

SYNOPSIS

  my $rt = RT::Client::REST->new(server => $ENV{RTSERVER});
  my $group = RT::Client::REST::Group->new(
    rt  => $rt,
    id  => $id,
  )->retrieve;

DESCRIPTION

RT::Client::REST::Group is based on RT::Client::REST::Object. The representation allows one to retrieve, edit, and create groups in RT.

Note: RT currently does not allow REST client to search groups.

ATTRIBUTES

For retrieval, you can specify either the numeric ID of the group or his group name. After the retrieval, however, this attribute will be set to the numeric id.
Name of the group
Description
List of the members of this group.

DB METHODS

For full explanation of these, please see "DB METHODS" in RT::Client::REST::Object documentation.

Retrieve RT group from database.
Create or update the group.
Currently RT does not allow REST clients to search groups.

INTERNAL METHODS

Returns 'group'.

SEE ALSO

RT::Client::REST, RT::Client::REST::Object, RT::Client::REST::SearchResult.

AUTHOR

Dean Hamstead <dean@fragfest.com.au>

COPYRIGHT AND LICENSE

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.

2023-12-21 perl v5.36.0