microsoft/teams.net

Public

mirrored from https://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
next/core-activitybuilder

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Tests/Microsoft.Teams.Api.Tests/Json/Activity/Conversation/ConversationUpdateActivity.json

42lines · modecode

1{
2 "type": "conversationUpdate",
3 "channelId": "msteams",
4 "topicName": "topicName",
5 "membersAdded": [
6 {
7 "id": "userId1",
8 "name": "User One"
9 },
10 {
11 "id": "userId2",
12 "name": "User Two"
13 }
14 ],
15 "membersRemoved": [
16 {
17 "id": "userId3",
18 "name": "User Three"
19 }
20 ],
21 "from": {
22 "id": "botId",
23 "aadObjectId": "aadObjectId",
24 "role": "bot",
25 "name": "Bot user",
26 "properties": {
27 "key1": "value1",
28 "key2": "value2"
29 }
30 },
31 "recipient": {
32 "id": "userId1",
33 "name": "User One"
34 },
35 "conversation": {
36 "id": "someguid",
37 "tenantId": "tenantId",
38 "conversationType": "channel",
39 "name": "channelName",
40 "isGroup": false
41 }
42}