Skip to main content

Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.

UpsertTeamInput

Input object expected by the query or mutation

input UpsertTeamInput {
description: String
email: String
name: String!
storedPrivateSlackChannel: String
slackChannel: String
slackGroup: String
}

Fields

UpsertTeamInput.description ● String scalar general

The description of the team

UpsertTeamInput.email ● String scalar general

The email of the team

UpsertTeamInput.name ● String! non-null scalar general

The name of the team: unique across your account

UpsertTeamInput.storedPrivateSlackChannel ● String scalar general

Private slack channel of the team. Used for notifications (only available for admin or service). Don't forget to invite the slack bot into this channel!

UpsertTeamInput.slackChannel ● String scalar general

The slack channel of the team (start with #)

UpsertTeamInput.slackGroup ● String scalar general

The slack group of the team (start with @)

Example

{
"description": "Members of the EMEA sales team",
"email": "emea.sales@example.com",
"name": "EMEA Sales",
"storedPrivateSlackChannel": "#emea-sales",
"slackChannel": "#emea-sales",
"slackGroup": "@emea-sales"
}

Member Of