Erro integração Microsoft

Olá,

Preciso da seguinte ajuda.
Atualmente tenho dificuldade com as atividades de integração do Microsoft 365. Quando a atividade encontra uma URL inválida, causa erro no fluxo e não permite continuar executando as demais atividades, mesmo eu usando o TRY CATCH e usando o EXCEPTION especifico do erro. Então essa atividade só consigo usar atualmente de forma manual, ignorando a atividade com erro e continuando o fluxo.

Alguém sabe como resolver isso?

Hi @robot.gestus

As soon as error is raised, bot will move the control to catch block thus not processing activities within the same try block after this activity.

if you do have a requirement, that you simply want to catch this error but still proceed executing rest of the steps in that try block, then surround this activity also with try-catch block and in simply display error log in catch block or whatever steps you wanna do on receiving this exception.

Hope this helps.