teams.getChatMember returns one chat member.
Example
automations/teams-get-chat-member.automation.ts
Inputs
Pass{ chatId: "chat-id", memberId: "member-id" }. The optional second argument { account } selects a Microsoft binding.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns one chat member.
teams.getChatMember returns one chat member.
import { automation } from "automate.ax"
import { teams } from "automate.ax/teams"
export default automation("Get chat member", () => {
teams.getChatMember({ chatId: "chat-id", memberId: "member-id" })
})
{ chatId: "chat-id", memberId: "member-id" }. The optional second argument { account } selects a Microsoft binding.