Files
n8n-enterprise-unlocked/packages/nodes-base/credentials/MicrosoftTeamsOAuth2Api.credentials.ts
2025-05-15 12:03:00 +01:00

35 lines
1013 B
TypeScript

import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class MicrosoftTeamsOAuth2Api implements ICredentialType {
name = 'microsoftTeamsOAuth2Api';
extends = ['microsoftOAuth2Api'];
displayName = 'Microsoft Teams OAuth2 API';
documentationUrl = 'microsoft';
properties: INodeProperties[] = [
//https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-permissions-and-consent
{
displayName: 'Scope',
name: 'scope',
type: 'hidden',
default: 'openid offline_access User.ReadWrite.All Group.ReadWrite.All Chat.ReadWrite',
},
{
displayName: `
Microsoft Teams Trigger requires the following permissions:
<br><code>ChannelMessage.Read.All</code>
<br><code>Chat.Read.All</code>
<br><code>Team.ReadBasic.All</code>
<br><code>Subscription.ReadWrite.All</code>
<br>Configure these permissions in <a href="https://portal.azure.com">Microsoft Entra</a>
`,
name: 'notice',
type: 'notice',
default: '',
},
];
}