Teams
Update Team
PATCH /api/teams/:slug
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
PATCH /api/teams/:slug
PATCH /api/teams/:slug
| Parameter | Type | Description |
|---|---|---|
slug | string | Current team slug |
{
"name": "New Team Name",
"slug": "new-slug"
}
| Field | Type | Required | Description |
|---|---|---|---|
name | string | No | New team name. Max 50 characters. |
slug | string | No | New team slug. Must be globally unique. |
curl -X PATCH https://lazyraccoon.dev/api/teams/my-team \
-H "Authorization: Bearer lr_your_key" \
-H "Content-Type: application/json" \
-d '{"name": "Renamed Team"}'
{
"id": "team-uuid",
"name": "Renamed Team",
"slug": "my-team"
}