---
title: "Create Team"
method: POST
path: "/api/v1/org/{orgId}/team"
tags: ["Organization Teams"]
---

# Create Team

`POST /api/v1/org/{orgId}/team`

## Create Team
Create a new StackHawk Team for this organization.

> 🧾 Audited
> This is recorded as `TEAM_ADDED` [User Activity](https://apidocs.stackhawk.com/reference/listauditactivity#user-activity-types).


> Requires `write:team` permission.

## Path parameters

- `orgId` string, uuid, required

## Request body

- OrganizationCreateTeamRequest
  - `applicationIds` string[]
  - `name` string
  - `organizationId` string
  - `userIds` string[]

## Response `200`

OK

- OrganizationCreateTeamResponse
  - `team` OrganizationTeam — Teams group together StackHawk users and applications within a single Organization. StackHawk Teams help enforce permissions and organization around ownership. See [Teams](https://docs.stackhawk.com/web-app/teams.html).
    - `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

## Other responses

- `400` — Bad Request
- `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/versions/ad3dfd54cb63/schema)
