Skip to main content
PATCH
/
teams
/
{id}
Update a team
curl --request PATCH \
  --url https://slog.ai/teams/{id} \
  --header 'Content-Type: application/json' \
  --header 'slog-api-key: <api-key>' \
  --data '
{
  "name": "Platform Engineering"
}
'
{
  "team": {
    "id": "team_01jqteam0001",
    "name": "Engineering",
    "prefix": "ENG",
    "description": "Core product engineering team.",
    "parentId": null,
    "parent": {
      "id": "team_01jqparent001",
      "name": "Product"
    },
    "members": [
      {
        "id": "tmbr_01jqmember001",
        "teamId": "team_01jqteam0001",
        "userId": "user_01jquser0001",
        "user": {
          "id": "user_01jquser0001",
          "name": "Alex Johnson",
          "email": "[email protected]",
          "avatarUrl": null,
          "humanId": null
        }
      }
    ],
    "createdAt": "2026-01-15T09:00:00.000Z",
    "updatedAt": "2026-01-15T09:00:00.000Z"
  }
}

Authorizations

slog-api-key
string
header
required

API key obtained from the Slog dashboard or returned by the signup/invite-redeem flows. Pass as the slog-api-key header.

Path Parameters

id
string
required

Resource ID (UPID) or, for tasks and projects, the human-readable reference such as ENG-42.

Body

application/json
name
string
Example:

"Platform Engineering"

prefix
string
Example:

"PLAT"

description
string | null
Example:

"Updated description."

Response

The updated team.

team
object