PATCH
/
api
/
teams
/
{teamId}
curl --request PATCH \
  --url https://firstquadrant.ai/api/teams/{teamId} \
  --header 'Bearer API key: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "My Team",
  "slug": "my-team"
}'
{
  "id": "tea_qxwVhUwAj3ijxWXstmCNvIII",
  "createdAt": "2024-05-12T00:00:00.000Z",
  "updatedAt": "2024-05-12T00:00:00.000Z",
  "name": "My Team",
  "slug": "my-team"
}

Authorizations

Bearer API key
string
header
required

The API key used to authenticate requests, learn how to generate an API key on the Authentication page.

Path Parameters

teamId
string
required

Team ID, starting with tea_

Body

application/json

Response

200 - application/json
Team object

The response is of type object.