Skip to content

Commit acbbf1f

Browse files
authored
feat: add group conversation and thread management endpoints (#218)
1 parent 5e41a5f commit acbbf1f

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

src/endpoints.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -598,5 +598,23 @@
598598
"toolName": "search-query",
599599
"scopes": ["Mail.Read", "Calendars.Read", "Files.Read.All", "People.Read"],
600600
"workScopes": ["Sites.Read.All", "Chat.Read", "ChannelMessage.Read.All"]
601+
},
602+
{
603+
"pathPattern": "/groups/{group-id}/conversations",
604+
"method": "get",
605+
"toolName": "list-group-conversations",
606+
"workScopes": ["Group.Read.All"]
607+
},
608+
{
609+
"pathPattern": "/groups/{group-id}/threads",
610+
"method": "get",
611+
"toolName": "list-group-threads",
612+
"workScopes": ["Group.Read.All"]
613+
},
614+
{
615+
"pathPattern": "/groups/{group-id}/threads/{conversationThread-id}/reply",
616+
"method": "post",
617+
"toolName": "reply-to-group-thread",
618+
"workScopes": ["Group.ReadWrite.All"]
601619
}
602620
]

0 commit comments

Comments
 (0)