> For the complete documentation index, see [llms.txt](https://gitbook.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gitbook.com/docs/developers/gitbook-api/guides/manage-your-team-with-the-api.md).

# Manage your team with the API

Create a team with existing members through the GitBook API.

### Before you begin

You need:

* An API token that can read and manage organization members.
* Your organization ID.
* A terminal with `curl`.

For OAuth, request `organization:members:read` and `organization:members:write`.

### List organization members

Request your organization’s members to find the IDs you want to add:

```bash
curl --request GET \
  --url "https://api.gitbook.com/v1/orgs/$ORGANIZATION_ID/members" \
  --header "Authorization: Bearer $GITBOOK_TOKEN"
```

Copy the `id` for each member you want in the team.

### Create a team

Create an `API documentation` team and assign the member IDs:

```bash
curl --request PUT \
  --url "https://api.gitbook.com/v1/orgs/$ORGANIZATION_ID/teams" \
  --header "Authorization: Bearer $GITBOOK_TOKEN" \
  --header "Content-Type: application/json" \
  --data '{
    "title": "API documentation",
    "members": [
      "<memberId>"
    ]
  }'
```

The response includes the new team’s `id`.

### Verify the team

List teams to confirm the new team:

```bash
curl --request GET \
  --url "https://api.gitbook.com/v1/orgs/$ORGANIZATION_ID/teams" \
  --header "Authorization: Bearer $GITBOOK_TOKEN"
```

Use the returned team ID to list its members:

```bash
curl --request GET \
  --url "https://api.gitbook.com/v1/orgs/$ORGANIZATION_ID/teams/$TEAM_ID/members" \
  --header "Authorization: Bearer $GITBOOK_TOKEN"
```

See the [Organization members reference](/docs/developers/gitbook-api/api-reference/organizations/organization-members.md) to manage members and roles.


---

# 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://gitbook.com/docs/developers/gitbook-api/guides/manage-your-team-with-the-api.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.
