> For the complete documentation index, see [llms.txt](https://docs.openreview.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.openreview.net/how-to-guides/managing-groups/how-to-add-members-to-a-group.md).

# How to Add and Remove Members from a Group

The program committee is represented as a group, like Reviewers, Area Chairs, Action Editors, etc. Each of these groups have a property 'members' that can contain a set of groups. Email addresses and profile ids are also represented as groups.

### **Adding Members to the Group**

If you want to build you own group of reviewers, you can simply add them as members to the group.

**Using the Group Editor**

1. Access the group editor at the following URL, replacing `group_id` with the actual ID of your group: `https://openreview.net/group/edit?id=group_id`
2. Under the Group Members section select the text box area, add their profile ID or email, and click on Add to Group

<figure><img src="/files/dTqWN0T4JB1Tjj2l8Kss" alt=""><figcaption><p>Group UI</p></figcaption></figure>

**Using the Python Library**

To remove members using the python client, utilize the `add_members_to_group` function:\
\
`client.add_members_to_group(group, ['~Jane_Doe1', '~Melisa_Bok1'])`

Replace `group` with your target group's ID, and include the profile ids or emails of the members you wish to remove in the list.

### Removing Members from the Group

Should you need to remove members from a group, you can also use the group editor or the python library.

**Using the Group Editor**

1. Access the group editor at the following URL, replacing `group_id` with the actual ID of your group: `https://openreview.net/group/edit?id=group_id`
2. In the Group Members section, locate the profiles/emails of the members you wish to remove.
3. Select the profile ID or email and click 'Remove' or 'Remove Selected' to delete them from the group.

<figure><img src="/files/Xlsj3yc42zBo2VZrMrCq" alt=""><figcaption><p>Group UI</p></figcaption></figure>

**Using the Python Library**

To programmatically remove members using the python library, utilize the `remove_members_from_group` function:

```python
client.remove_members_from_group(group, ['~Jane_Doe1', '~Melisa_Bok1'])
```

Replace `group` with your target group's ID, and include the profile ids or emails of the members you wish to remove in the list.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.openreview.net/how-to-guides/managing-groups/how-to-add-members-to-a-group.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
