Skip to main content
PATCH
/
v1
/
teams
/
{team_id}
Patch Team
curl --request PATCH \
  --url https://api.example.com/v1/teams/{team_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

team_id
string
required

Body

application/json
name
string | null
Required string length: 1 - 100
description
string | null
Maximum string length: 500

Response

Successful Response