logo
Azure Logic Apps - Interview Questions and Answers
How would you create a custom connector in Azure Logic Apps? Can you walk through the process?
To create a custom connector in Azure Logic Apps, follow these steps:

1. Prepare : Identify the API you want to connect and gather necessary information like authentication type, base URL, and required parameters.

2. Create : In the Azure portal, navigate to “Logic App Custom Connector” and click “New custom connector.” Provide a name and choose your desired icon.

3. Define : Configure general settings such as host, base URL, and authentication type (e.g., OAuth 2.0, API Key). Save your changes.

4. Actions : Add actions by defining operation ID, request method (GET, POST), and endpoint URL. Specify input parameters, response types, and status codes.

5. Test : Connect to your API using provided authentication details and test each action with sample data. Ensure correct responses are received.

6. Deploy : Once tested, deploy the custom connector for use in your logic apps.

7. Use : In your logic app, add an action and search for your custom connector. Select the desired action and configure inputs/outputs accordingly.