DELETE
/
api
/
teams
/
{teamId}
curl --request DELETE \
  --url https://firstquadrant.ai/api/teams/{teamId} \
  --header 'Superuser access: <api-key>'
{
  "id": "tea_qxwVhUwAj3ijxWXstmCNvIII",
  "createdAt": "2024-05-12T00:00:00.000Z",
  "updatedAt": "2024-05-12T00:00:00.000Z",
  "name": "My Team",
  "slug": "my-team"
}

Authorizations

Superuser access
string
header
required

This header is used to authenticate as a superuser. Your API key must have the sudo scope to use this header.

Path Parameters

teamId
string
required

Team ID, starting with tea_

Response

200 - application/json
Team object
id
string
required

The unique ID of the team, starting with tea_.

Example:

"tea_qxwVhUwAj3ijxWXstmCNvIII"

createdAt
string
required

The date and time the team was created.

Example:

"2024-05-12T00:00:00.000Z"

updatedAt
string
required

The date and time the team was last updated.

Example:

"2024-05-12T00:00:00.000Z"

name
string
required

The name of the team.

Example:

"My Team"

slug
string
required

The unique slug of the team used is URLs in the FirstQuadrant app, e.g., https://firstquadrant.ai/my-team.

Example:

"my-team"