Skip to main content
PATCH
/
api
/
teams
/
{id}
Update team
curl --request PATCH \
  --url https://api-next.dealroom.co/api/teams/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Engineering (Q2 2026 reorg)"
}
'
{
  "data": {
    "id": 123,
    "name": "<string>",
    "slug": "<string>",
    "created_by": "<string>",
    "is_active": true,
    "created_at": "<string>",
    "updated_at": "<string>",
    "member_count": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.beta.dealroom.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Auth0 JWT access token. Paste a token obtained from your preferred OAuth2 flow. For machine-to-machine use, the OAuth2 client_credentials scheme below can mint a token directly from your client_id / client_secret inside the Swagger UI Authorize dialog.

Path Parameters

id
string
required

Team ID

Pattern: ^\d+$
Example:

"1"

Body

application/json
name
string

Display name for the team

Required string length: 1 - 200
Example:

"Engineering"

slug
string

URL-friendly identifier (lowercase alphanumeric + hyphens)

Required string length: 1 - 100
Pattern: ^[a-z0-9][a-z0-9-]*[a-z0-9]$|^[a-z0-9]$
Example:

"engineering"

Response

Team updated

data
object
required