- Notas relacionadas
- Información general
- Primeros pasos
- Proveedores de Marketplace
- Clientes de Marketplace
- Pautas de publicación
- Directrices de publicación para automatizaciones listas para usar
- Directrices de publicación para aceleradores de soluciones
- Directrices de publicación para conectores de Integration Service
- Directrices de publicación para plantillas de aplicaciones de Process Mining
- Seguridad y protección de IP
- Otros listados de UiPath
- Node-RED
- Configuración
- Equipos
- Ámbito de Microsoft Teams
- Crear equipo
- Crear equipo a partir de un grupo
- Obtener equipo
- Obtener equipos
- Canales
- Crear canal
- Eliminar canal
- Obtener canal
- Obtener canales
- Actualizar canal
- Charlas
- Obtener chat
- Obtener chats
- Obtener miembros del chat
- Mensajes
- Obtener mensaje
- Obtener mensajes
- Obtener respuestas de mensajes
- Responder mensaje
- Enviar mensaje
- Events
- Crear Evento
- Eliminar Evento
- Obtener evento
- Obtener eventos
- Usuarios
- Obtener presencia del usuario
- Cómo funciona
- Referencias técnicas
- Comience ya
- Configuración
- Referencias técnicas
- Guías de inicio rápido
- Ámbito de Amazon
- Actividades
- Analizar documento de una sola página
- Analizar documento de varias páginas
- Iniciar análisis de documentos
- Obtener estado de análisis de documentos
- Obtener análisis de documentos
- El objeto Detalle de la página
- Cómo funciona
- Referencias técnicas
- Comience ya
- Acerca de
- Configuración
- Referencias técnicas
- Ámbito del reconocedor de formularios de Azure
- Actividades
- Analizar formulario
- Analizar formulario asíncrono
- Obtener resultado del formulario de análisis
- Analizar recibo
- Analizar recepción asíncrona
- Obtener resultado de análisis de recepción
- Analizar diseño
- Analizar diseño asíncrono
- Obtener resultado de análisis de diseño
- Entrenar modelo
- Obtener modelos
- Obtener claves de modelo
- Obtener información del modelo
- Eliminar modelo
- Conectores
- Cómo crear actividades
- Cree su integración

Guía del usuario de Marketplace
Ámbito de Microsoft Teams
The Microsoft Teams activities use the Microsoft identity platform to establish an authenticated connection between UiPath and your Microsoft Teams application via the Microsoft Scope activity. This connection enables a Robot to call the Microsoft Graph API to read and write resources on your behalf.
To establish your authenticated connection, you first register your Microsoft Teams application in your Azure Active Directory (using your personal, work, and/or school Microsoft Office 365 account). When registering your application, you assign the Microsoft Graph API permissions that specify the resources a Robot can access on your behalf.
After registering your Microsoft Teams application, Azure Active Directory assigns a unique application (client) ID that you enter in the Microsoft Teams Scope activity. The ApplicationID is used to collect the necessary information about your registered app to initiate authentication.
To learn more about registering your application and assigning permission, see the Setup guide. This guide provides step-by-step instructions to configure your Microsoft Teams application for automation.
Cómo funciona
The following steps and message sequence diagram is an example of how the activity works from design time (that is, the activity dependencies and input/output properties) to run time.
-
Completa los pasos de configuración .
-
Add the Microsoft Teams Scope activity to your project.
-
Enter values for the Authentication, Input, and Unattended (if applicable) properties.

Automatización atendida frente a desatendida
The Microsoft Teams Scope activity has three different authentication flows (AuthenticationTypes) that you can choose from when adding the activity to your project. Your selection is dependent on the type of automation mode you plan to run (unattended or attended) and your application authentication requirements (consult with your administrator if you're unsure which authentication requirements apply to your application).
| TipoDeAutenticación | Atendido | Desatendido |
|---|---|---|
| Token interactivo | X | N/D |
| AutenticaciónDeVentanasIntegradas | X | X |
| Nombre de usuario y contraseña | X | X |
Unattended automation does not support multi-factor authentication. If you're application requires multi-factor authentication, you can only run attended automation using the InteractiveToken authentication type.
Token interactivo
The InteractiveToken authentication type can be used for attended automation and when multi-factor authentication (MFA) is required. This is the default option and what we use in our examples. If you're interested in "playing around" with the activity package, this option is easy to configure and works well for personal accounts (using the default redirect URI noted in step 7 of the Register your application section of the Setup guide).
When the Microsoft Teams Scope activity is run for the first time using this authentication type, you are prompted to authorize access to the resources (you granted permissions to when registering your app) via a consent dialogue box.
If you select this option, the Username, Password, and Tenant properties should be left empty.
This authentication type follows the OAuth 2.0 authorization code flow.
Autenticación de Windows integrada
The IntegratedWindowsAuthentication authentication type can be used for both attended and unattended automation. This option can apply to Windows hosted applications running on computers joined to a Windows domain or Azure Active Directory.
You should only select this option if your registered application is configured to support Integrated Windows Authentication (additional information can be found on GitHub).
If you select this option, the Username, Password, and Tenant properties should be left empty.
Nombre de usuario y contraseña
The UsernameAndPassword authentication type can be used for both attended (when multi-factor authentication is not required) and unattended automation.
Though it's not recommended by Microsoft, you can use this authentication type in public client applications. Using this authentication type imposes constraints on your application. For instance, apps using this flow won't be able to sign in a user who needs to perform multi-factor authentication (conditional access). It won't enable your application to benefit from single sign-on either. Authentication with username/password goes against the principles of modern authentication and is only provided for legacy reasons (additional information can be found on GitHub).
If you select this option, the Username and Password properties are required and the Tenant property is optional for single-tenant applications (required for multi-tenant applications).
The ApplicationID property is required when selecting the UsernameAndPassword AuthenticationType. You can register your Microsoft Office 365 Application using your personal, work, and/or school account.
Propiedades
Los valores para las siguientes propiedades se especifican al agregar esta actividad a tu proyecto en UiPath Studio.
Común
NombreParaMostrar
El nombre para mostrar de la actividad.
| Atributos | Detalles |
|---|---|
| Tipo | String |
| Obligatorio | Sí |
| Valor predeterminado | Ámbito de Microsoft Teams |
| Valores permitidos | Introduce una variable String o String . |
| Notas | N/D |
Autenticación
IDDeLaAplicación
The unique application (client) ID assigned by the Azure Active Directory when you registered your app during Setup.
| Atributos | Detalles |
|---|---|
| Tipo |
|
| Obligatorio | Sí |
| Valor predeterminado | Vacío |
| Valores permitidos | Introduce una variable String o String . |
| Notas |
|
TipoDeAutenticación
El tipo de autenticación requerido para su aplicación registrada.
| Atributos | Detalles |
|---|---|
| Tipo | Selección desplegable |
| Obligatorio | Sí |
| Valor predeterminado | Token interactivo |
| Valores permitidos | Select one of the three options: InteractiveToken IntegratedWindowsAuthentication UsernameAndPassword |
| Notas | For more information about these options and which one to select, see the Unattended and Attended Automation section above. |
Tenant
The unique directory (tenant) ID assigned by the Azure Active Directory when you registered your app during.
| Atributos | Detalles |
|---|---|
| Tipo | String |
| Obligatorio | No (requerido para aplicaciones de tenant múltiple) |
| Valor predeterminado | Vacío |
| Valores permitidos | Introduce una variable String o String . |
| Notas | El ID del directorio (tenant) se puede encontrar en la página de información general de tu aplicación registrada (bajo el ID de la aplicación (cliente)). |
Token interactivo
AplicaciónOAuth
Indica la aplicación (cliente) que se usará.
| Atributos | Detalles |
|---|---|
| Tipo | enum |
| Obligatorio | No |
| Valor predeterminado | Personalizar |
| Valores permitidos | Personalizado, UiPath |
| Notas | Si se selecciona 'UiPath', se omiten ApplicationId y Tenant. |
Nombre de usuario y contraseña (desatendido)
These properties apply when you run unattended automation only. When specifying values for these properties, be sure the AuthenticationType property is set to UsernameAndPassword. For more information, see the Username and Password section above.
Contraseña
La contraseña de su cuenta de Microsoft Office 365.
| Atributos | Detalles |
|---|---|
| Tipo | String |
| Obligatorio | No (required if AuthenticationType is UsernameAndPassword) |
| Valor predeterminado | Vacío |
| Valores permitidos | Introduce una variable String o String . |
| Notas | N/D |
Contraseña segura
La contraseña de su cuenta de Microsoft Office 365.
| Atributos | Detalles |
|---|---|
| Tipo | SecureString |
| Obligatorio | No (required if AuthenticationType is UsernameAndPassword) and Password is null. |
| Valor predeterminado | Vacío |
| Valores permitidos | Introduce una variable SecureString o SecureString . |
| Notas | N/D |
Nombre de usuario
El nombre de usuario de su cuenta de Microsoft Office 365.
| Atributos | Detalles |
|---|---|
| Tipo | String |
| Obligatorio | No (required if AuthenticationType is UsernameAndPassword) |
| Valor predeterminado | Vacío |
| Valores permitidos | Introduce una variable String o String . |
| Notas | N/D |