Pithub::Orgs(3) Github v3 Orgs API

VERSION

version 0.01033

METHODS

get

  • Get an organization

        GET /orgs/:org
    

    Examples:

        my $o = Pithub::Orgs->new;
        my $result = $o->get( org => 'CPAN-API' );
    

list

  • List all public organizations for a user.

        GET /users/:user/orgs
    

    Examples:

        my $o = Pithub::Orgs->new;
        my $result = $o->list( user => 'plu' );
    
  • List public and private organizations for the authenticated user.

        GET /user/orgs
    

    Examples:

        my $o = Pithub::Orgs->new;
        my $result = $o->list;
    

members

Provides access to Pithub::Orgs::Members.

teams

Provides access to Pithub::Orgs::Teams.

update

  • Edit an organization

        PATCH /orgs/:org
    

    Examples:

        my $o = Pithub::Orgs->new;
        my $result = $o->update(
            org  => 'CPAN-API',
            data => {
                billing_email => '[email protected]',
                blog          => 'https://github.com/blog',
                company       => 'GitHub',
                email         => '[email protected]',
                location      => 'San Francisco',
                name          => 'github',
            }
        );
    

AUTHOR

Johannes Plunien <[email protected]>

COPYRIGHT AND LICENSE

This software is copyright (c) 2011 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.