---
title: "Find Teams for Organization"
method: GET
path: "/api/v1/org/{orgId}/teams"
tags: ["Organization Teams"]
---

# Find Teams for Organization

`GET /api/v1/org/{orgId}/teams`

## List Teams

Get the Teams that belong to this StackHawk organization.

Returns a [paginated list](https://apidocs.stackhawk.com/docs/pagination-and-sorting) of Teams.

| Parameter | Default | Description |
|:---:|:---:|:---:|
|teams|[]|found list of teams.|
|nextPageToken|""|pageToken to provide for the next page of results.|
|totalCount|0|total number of results.|

All users that belong to this organization can call this endpoint.


> Requires `read:team` permission.

## Path parameters

- `orgId` string, uuid, required

## Query parameters

- `pageToken` integer
- `pageSize` integer
- `search` string

## Response `200`

Paginated response of teams.

- OrganizationListTeamsResponse — Paginated response of teams.
  - `nextPageToken` string — pageToken to provide for the next page of results.
  - `teams` OrganizationTeam[] — found list of teams.
    - `applications` OrganizationTeamApplication[] — The applications that belong to this Team.
      - `applicationId` string
      - `applicationName` string
      - `environments` string[]
      - `lastScanTimestamp` integer
    - `id` string — The UUID identifier of this team.
    - `name` string — The name of this team.
    - `organizationId` string — The StackHawk organization that owns this Team.
    - `users` OrganizationTeamUser[] — The users that are members of this Team.
      - `email` string
      - `role` string
      - `userId` string
      - `userName` string
  - `totalCount` integer — total number of results.

## Other responses

- `401` — Unauthorized

---

[API](https://skmtc.net/stackhawk/apis/stackhawk-public-api.md) · [All operations](https://skmtc.net/stackhawk/apis/stackhawk-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/stackhawk/stackhawk-public-api/revisions/ad3dfd54cb63/schema)
