Teams
Get Team
Get Team associated with provided team id
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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Team Id
Response
200
application/json
Returns the Team associated with provided team id
Teams
+value=volume
Available options:
team
+sort=1 +message=Use of only alpha numeric character and "-" is allowed as team name and must be less than 25 characters +usage=Name of the Team
+sort=2 +label=Team Members +message=Enter email of each of the user you want to add in the team. +uiType=UserSelect +uiProps={"optionTypes": ["users"]}
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>"
]
}
}
}