Pithub::Orgs - Github v3 Orgs API
- •
- Get an organization
GET /orgs/:org
Examples:
my $o = Pithub::Orgs->new;
my $result = $o->get( org => 'CPAN-API' );
Provides access to Pithub::Orgs::Members.
Provides access to Pithub::Orgs::Teams.
- •
- Edit an organization
PATCH /orgs/:org
Examples:
my $o = Pithub::Orgs->new;
my $result = $o->update(
org => 'CPAN-API',
data => {
billing_email => 'support@github.com',
blog => 'https://github.com/blog',
company => 'GitHub',
email => 'support@github.com',
location => 'San Francisco',
name => 'github',
}
);
Johannes Plunien <plu@cpan.org>
This software is copyright (c) 2011-2019 by Johannes Plunien.
This is free software; you can redistribute it and/or modify it
under the same terms as the Perl 5 programming language system itself.