GET
/
api
/
svc
/
v1
/
teams
/
{id}
curl --request GET \
  --url https://{controlPlaneURL}/api/svc/v1/teams/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "teamName": "<string>",
    "description": "<string>",
    "tenantName": "<string>",
    "createdBySubject": {
      "subjectId": "<string>",
      "subjectType": "user",
      "subjectSlug": "<string>",
      "subjectDisplayName": "<string>"
    },
    "members": [
      "<string>"
    ],
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "manifest": {
      "type": "team",
      "name": "<string>",
      "members": [
        "<string>"
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Team Id

Response

200
application/json
Returns the Team associated with provided team id
data
object
required

Teams