Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.
GetTeamsOutput
Response from the executed query or mutation
type GetTeamsOutput {
createdAt: Timestamp!
description: String
email: String
id: String!
memberIds: [String!]!
name: String!
ownedAssetIds: [String!]!
slackChannel: String
slackGroup: String
}
Fields
GetTeamsOutput.createdAt ● Timestamp! non-null scalar general
Date and time the resource was created
GetTeamsOutput.description ● String scalar general
The description of the team
GetTeamsOutput.email ● String scalar general
The email of the team
GetTeamsOutput.id ● String! non-null scalar general
the unique id of the team
GetTeamsOutput.memberIds ● [String!]! non-null scalar general
List of users ids that are members
GetTeamsOutput.name ● String! non-null scalar general
The name of the team
GetTeamsOutput.ownedAssetIds ● [String!]! non-null scalar general
List of entities ids owned by the team
GetTeamsOutput.slackChannel ● String scalar general
The slack channel of the team (start with #)
GetTeamsOutput.slackGroup ● String scalar general
The slack group of the team (start with @)
Example
{
"createdAt": 1758555879800,
"description": "Members of the EMEA sales team",
"email": "emea.sales@example.com",
"id": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"memberIds": [
"fffe43cb-a92f-48d9-9527-3fcc4e5f6dba"
],
"name": "EMEA Sales",
"ownedAssetIds": [
"fffe43cb-a92f-48d9-9527-3fcc4e5f6dba"
],
"slackChannel": "#emea-sales",
"slackGroup": "@emea-sales"
}
Returned By
getTeamsquery