Edit

agentTeamworkConfiguration resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents the per-conversation-context message notification settings that an agent uses across Teams conversation types (group chat, channel, one-on-one chat, and meeting chat).

This complex type is configured in the teamworkConfiguration property of agentCommunicationConfiguration.

Methods

None.

Properties

Property Type Description
channelConfiguration agentConversationConfiguration The message notification settings that the agent uses in channels.
groupChatConfiguration agentConversationConfiguration The message notification settings that the agent uses in group chats.
meetingChatConfiguration agentConversationConfiguration The message notification settings that the agent uses in meeting chats.
oneOnOneChatConfiguration agentConversationConfiguration The message notification settings that the agent uses in one-on-one chats.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.agentTeamworkConfiguration",
  "groupChatConfiguration": {"@odata.type": "microsoft.graph.agentConversationConfiguration"},
  "channelConfiguration": {"@odata.type": "microsoft.graph.agentConversationConfiguration"},
  "oneOnOneChatConfiguration": {"@odata.type": "microsoft.graph.agentConversationConfiguration"},
  "meetingChatConfiguration": {"@odata.type": "microsoft.graph.agentConversationConfiguration"}
}