user1872757
user1872757

Reputation: 147

In Azure Logic Apps, How to make a HTTP Get/Post Call with NTLM Authentication?

I am trying to make a HTTP (Get/Post) call in Azure Logic Apps ? The called service is on-premise (it's in fact a webservice) and it supports NTLM Authentication.

I can reach the service via postman (enabling NTLM Authentication). Does Azure Logic Apps support it ? if not, What are the alternatives..

Thanks Prabath

Upvotes: 2

Views: 1214

Answers (2)

Allinone51
Allinone51

Reputation: 624

With a little "hack" you can actually execute a REST API call in Logic Apps with NTLM authentication. You can use the following action: https://learn.microsoft.com/en-us/connectors/sharepoint/#send-an-http-request-to-sharepoint When you create the API connection you can check 'use on-premise gateway' and then use Windows authentication. You can execute GET/PUT/POST/PATCH/DELETE and set custom headers

Upvotes: 0

Haris Abdulkareem
Haris Abdulkareem

Reputation: 211

Logic app doesn't support NTLM authentication

Upvotes: 2

Related Questions