Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Team Id
Response
Returns the Team associated with provided team id
Teams
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>",
"managers": [
"<string>"
],
"members": [
"<string>"
],
"ownedBy": {
"account": "<string>"
}
}
}
}Get Team associated with provided team 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>",
"managers": [
"<string>"
],
"members": [
"<string>"
],
"ownedBy": {
"account": "<string>"
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Team Id
Returns the Team associated with provided team id
Teams
Show child attributes
Was this page helpful?