Skip to main content
GET
/
teams
/
{teamIdOrSlug}
cURL
curl --request GET \
  --url https://api.youappz.dev/teams/{teamIdOrSlug} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "slug": "<string>",
  "name": "<string>",
  "avatar": "<string>",
  "createdBy": 123,
  "createdAt": 123,
  "updatedAt": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

teamIdOrSlug
string
required

The Team identifier/slug to perform the request on behalf of.

Minimum string length: 3
Example:

"team_LLHUOMOoDlqOp8wPE4kFo9pE"

Response

The requested Team

id
string
required
slug
string
required
name
string | null
required
avatar
string | null
required
createdBy
number | null
required
createdAt
number
required
updatedAt
number
required