cURL
curl --request PATCH \ --url https://api.example.com/api/teams/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "Engineering", "slug": "engineering" } '
{ "data": { "id": 123, "name": "<string>", "slug": "<string>", "created_by": "<string>", "is_active": true, "created_at": "<string>", "updated_at": "<string>", "member_count": 123 } }
Update team name and/or slug. Requires owner or admin role.
Auth0 JWT access token
Team ID
^\d+$
"1"
Display name for the team
1 - 200
"Engineering"
URL-friendly identifier (lowercase alphanumeric + hyphens)
1 - 100
^[a-z0-9][a-z0-9-]*[a-z0-9]$|^[a-z0-9]$
"engineering"
Team updated
Show child attributes