Ubuntu Manpages

version 0.01035

  • Get an organization

        GET /orgs/:org
        

    Examples:

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

  • 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;
        

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.