Ubuntu Manpages

Pithub::Orgs::Members

Github v3 Org Members API

version 0.01035

  • Conceal a user's membership

        DELETE /orgs/:org/public_members/:user
        

    Examples:

        my $m = Pithub::Orgs::Members->new;
        my $result = $m->conceal(
            org  => 'CPAN-API',
            user => 'plu',
        );
        

  • Removing a user from this list will remove them from all teams and they will no longer have any access to the organization's repositories.

        DELETE /orgs/:org/members/:user
        

    Examples:

        my $m = Pithub::Orgs::Members->new;
        my $result = $m->delete(
            org  => 'CPAN-API',
            user => 'plu',
        );
        

  • Check if a user is a member of an organization

        GET /orgs/:org/members/:user
        

    Examples:

        my $m = Pithub::Orgs::Members->new;
        my $result = $m->is_member(
            org  => 'CPAN-API',
            user => 'plu',
        );
        

  • Get if a user is a public member

        GET /orgs/:org/public_members/:user
        

    Examples:

        my $m = Pithub::Orgs::Members->new;
        my $result = $m->is_public(
            org  => 'CPAN-API',
            user => 'plu',
        );
        

  • List all users who are members of an organization. A member is a user that belongs to at least 1 team in the organization. If the authenticated user is also a member of this organization then both concealed and public members will be returned. Otherwise only public members are returned.

        GET /orgs/:org/members
        

    Examples:

        my $m = Pithub::Orgs::Members->new;
        my $result = $m->list( org => 'CPAN-API' );
        

  • Members of an organization can choose to have their membership publicized or not.

        GET /orgs/:org/public_members
        

    Examples:

        my $m = Pithub::Orgs::Members->new;
        my $result = $m->list_public( org => 'CPAN-API' );
        

  • Publicize a user's membership

        PUT /orgs/:org/public_members/:user
        

    Examples:

        my $m = Pithub::Orgs::Members->new;
        my $result = $m->publicize(
            org  => 'CPAN-API',
            user => 'plu',
        );
        

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.