<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: HTTP connection action in Community Chat</title>
    <link>https://systematic.workato.com/t5/community-chat/http-connection-action/m-p/11867#M1179</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/8685"&gt;@shivakumara&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, you are absolutely right. The request works fine when I send it from Postman.&lt;/P&gt;&lt;P&gt;It is also working from the Workato HTTP connector when providing the details in the Request Body.&lt;/P&gt;&lt;P&gt;However, I’m unsure how to properly provide the credentials when adding the HTTP action in my recipe. I have already created the connection successfully.&lt;/P&gt;&lt;P&gt;For testing purposes, I am currently passing&amp;nbsp;&lt;SPAN&gt;grant_type,&amp;nbsp;client_secret,&amp;nbsp;client_id, and&amp;nbsp;scope&amp;nbsp;&lt;/SPAN&gt;directly in the Request Body, which I understand is not the correct approach.&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-02-13 at 6.34.49 AM.png" style="width: 999px;"&gt;&lt;img src="https://systematic.workato.com/t5/image/serverpage/image-id/2588i542E7B1A7F77E82E/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Screenshot 2026-02-13 at 6.34.49 AM.png" alt="Screenshot 2026-02-13 at 6.34.49 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 13 Feb 2026 12:00:24 GMT</pubDate>
    <dc:creator>lalatendujena</dc:creator>
    <dc:date>2026-02-13T12:00:24Z</dc:date>
    <item>
      <title>HTTP connection action</title>
      <link>https://systematic.workato.com/t5/community-chat/http-connection-action/m-p/11838#M1175</link>
      <description>&lt;P&gt;I am connecting to AWS from Workato and retrieving a token. Using this token, I am trying to connect to another application.&lt;/P&gt;&lt;P&gt;My steps are: (In a Recipe)&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;I created a trigger to schedule for every 6 hrs&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;In the next action, I am trying to use the HTTP connector.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I have already created a &lt;STRONG&gt;Connection&lt;/STRONG&gt;, which is successful, and I want to use this same connection in the HTTP action.&lt;/P&gt;&lt;P&gt;However, when I select the HTTP action (Choose from App), it asks for the URL (which is fine), but it also asks for additional details in the request body, such as grant type, client credentials, etc.&lt;/P&gt;&lt;P&gt;My question is: if I have already created a connection and I am using that connection in this recipe, why is it asking for these details again? I feel like I might be missing something.&lt;BR /&gt;&lt;BR /&gt;Getting this error when testing the Recipe, although the client credentials are already available in the connection.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;&lt;SPAN&gt;401 Unauthorized { "error": "invalid_client", "error_description": "AADSTS7000216: 'client_assertion', 'client_secret' or 'request' is required for the 'client_credentials' grant type. Trace ID: **** Correlation ID: **** Timestamp: 2026-02-12 22:48:01Z", "error_codes": [ 7000216 ], "timestamp": "2026-02-12 22:48:01Z", "trace_id": "****", "correlation_id": "9c8ff63c-5f6c-43c3-88e3-360e5c0c768a", "error_uri": "****" }&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Can someone please suggest what might be wrong?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Feb 2026 22:52:01 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/community-chat/http-connection-action/m-p/11838#M1175</guid>
      <dc:creator>lalatendujena</dc:creator>
      <dc:date>2026-02-12T22:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: HTTP connection action</title>
      <link>https://systematic.workato.com/t5/community-chat/http-connection-action/m-p/11855#M1177</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/13358"&gt;@lalatendujena&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;After observing your error looks you are calling Azure AD from AWS please correct if my understanding is wrong!&lt;BR /&gt;if possible can you send us the screenshot how are you sending the request?&lt;BR /&gt;&lt;BR /&gt;Here I am adding after understanding the API documentation, here are the things we have to send&amp;nbsp;&lt;BR /&gt;curl -X POST &lt;A href="https://login.microsoftonline.com/" target="_blank"&gt;https://login.microsoftonline.com/&lt;/A&gt;&amp;lt;tenant-id&amp;gt;/oauth2/v2.0/token \&lt;BR /&gt;-H "Content-Type: application/x-www-form-urlencoded" \&amp;nbsp;&amp;nbsp;&lt;BR /&gt;-d "grant_type=client_credentials" \&amp;nbsp;&amp;nbsp;&lt;BR /&gt;-d "client_id=xxxxxxxx" \&lt;BR /&gt;-d "client_secret=xxxxxxxx" \&lt;BR /&gt;-d "scope=&lt;A href="https://graph.microsoft.com/.default" target="_blank"&gt;https://graph.microsoft.com/.default&lt;/A&gt;"&lt;BR /&gt;&lt;BR /&gt;-H: Header ( parameter needs to be sent in Header)&amp;nbsp;&lt;BR /&gt;-d: (request body) should be part of your request body&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Microsoft parameter.png" style="width: 999px;"&gt;&lt;img src="https://systematic.workato.com/t5/image/serverpage/image-id/2581iEDCB48248F86C61A/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Microsoft parameter.png" alt="Microsoft parameter.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Please try at your end, let us know if you need further help.&lt;BR /&gt;&lt;BR /&gt;Thanks and regards,&lt;BR /&gt;Shivakumara K A&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 09:43:52 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/community-chat/http-connection-action/m-p/11855#M1177</guid>
      <dc:creator>shivakumara</dc:creator>
      <dc:date>2026-02-13T09:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: HTTP connection action</title>
      <link>https://systematic.workato.com/t5/community-chat/http-connection-action/m-p/11867#M1179</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/8685"&gt;@shivakumara&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, you are absolutely right. The request works fine when I send it from Postman.&lt;/P&gt;&lt;P&gt;It is also working from the Workato HTTP connector when providing the details in the Request Body.&lt;/P&gt;&lt;P&gt;However, I’m unsure how to properly provide the credentials when adding the HTTP action in my recipe. I have already created the connection successfully.&lt;/P&gt;&lt;P&gt;For testing purposes, I am currently passing&amp;nbsp;&lt;SPAN&gt;grant_type,&amp;nbsp;client_secret,&amp;nbsp;client_id, and&amp;nbsp;scope&amp;nbsp;&lt;/SPAN&gt;directly in the Request Body, which I understand is not the correct approach.&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-02-13 at 6.34.49 AM.png" style="width: 999px;"&gt;&lt;img src="https://systematic.workato.com/t5/image/serverpage/image-id/2588i542E7B1A7F77E82E/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Screenshot 2026-02-13 at 6.34.49 AM.png" alt="Screenshot 2026-02-13 at 6.34.49 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 12:00:24 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/community-chat/http-connection-action/m-p/11867#M1179</guid>
      <dc:creator>lalatendujena</dc:creator>
      <dc:date>2026-02-13T12:00:24Z</dc:date>
    </item>
    <item>
      <title>Re: HTTP connection action</title>
      <link>https://systematic.workato.com/t5/community-chat/http-connection-action/m-p/11871#M1180</link>
      <description>&lt;P&gt;Thank you so much&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/8685"&gt;@shivakumara&lt;/a&gt;&amp;nbsp;for helping me out here. Now the issue is resolved.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 15:38:30 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/community-chat/http-connection-action/m-p/11871#M1180</guid>
      <dc:creator>lalatendujena</dc:creator>
      <dc:date>2026-02-13T15:38:30Z</dc:date>
    </item>
  </channel>
</rss>

