create-channel.ts•1.12 kB
import { microsoftTeamsAuth } from '../../';
import { createAction, Property } from '@activepieces/pieces-framework';
import { Client } from '@microsoft/microsoft-graph-client';
import { microsoftTeamsCommon } from '../common';
export const createChannelAction = createAction({
auth: microsoftTeamsAuth,
name: 'microsoft_teams_create_channel',
displayName: 'Create Channel',
description: 'Create a new channel in Microsoft Teams.',
props: {
teamId: microsoftTeamsCommon.teamId,
channelDisplayName: Property.ShortText({
displayName: 'Channel Name',
required: true,
}),
channelDescription: Property.LongText({
displayName: 'Channel Description',
required: false,
}),
},
async run(context) {
const { teamId, channelDescription, channelDisplayName } = context.propsValue;
const client = Client.initWithMiddleware({
authProvider: {
getAccessToken: () => Promise.resolve(context.auth.access_token),
},
});
const channel = {
displayName: channelDisplayName,
description: channelDescription,
};
return await client.api(`/teams/${teamId}/channels`).post(channel);
},
});