Posts

Showing posts from March, 2023

Getting application error details in Logic Apps using Chat GPT in exception handling

Image
 Problem Statement:       if you are using any API and Azure logic app if it got failed we will get an error message. Sometimes In order to understand the errors we will copy and paste the error into google and we will search for the error. By following the below method we can print the summary of the error and suggestions to fix the issue. services used: 1) Azure Logic App 2)Chat GPT connector Step 1:  I have used an HTTP trigger here I am not passing anybody to trigger this URL the logic will execute. Step 2: Here I am using the exception handling concept here I have taken the scope in scope I have taken HTTP action(NOTE: for sample test case I have taken HTTP  based on your requirement you can add action) Step 3: After HTTP I have taken response Action it will give the response when HTTP action gets successful. Step 4: if Scope1 got failed Scope 2 will be triggered in scope to I am using this chat GPT activity.  the input for chat GPT failure body o...