<?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: Help with RMS Online API Token Authentication in Power Query – 400 Bad Request Error in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Help-with-RMS-Online-API-Token-Authentication-in-Power-Query-400/m-p/4864552#M63649</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I’ve double-checked and confirmed that my &lt;STRONG&gt;Power BI data source is configured as Anonymous for &lt;A href="https://staging.rms-online.co.za" target="_blank" rel="noopener"&gt;https://staging.rms-online.co.za.&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I’ve also verified that the API endpoint is correct — it matches the one provided in the official &lt;STRONG&gt;RMS Online API Integration Guide:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;POST &lt;SPAN class=""&gt;https:/&lt;SPAN class=""&gt;/staging.rms-online.co.za/api&lt;SPAN class=""&gt;/v1/service&lt;SPAN class=""&gt;/token/password&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;PRE&gt;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;Despite that, I’m still receiving a &lt;STRONG&gt;400 Bad Request error when the request is sent from Power Query, even though the same credentials and JSON body work correctly when tested in &lt;STRONG&gt;Postman.&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;It seems that Power Query may be formatting or encoding the request body differently (perhaps due to how it serialises JSON or sets headers).&lt;/P&gt;&lt;P&gt;Would you happen to know whether &lt;STRONG&gt;RMS’s token endpoint requires a particular header, encoding format, or perhaps &lt;STRONG&gt;does not accept JSON payloads but only x-www-form-urlencoded content?&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Any additional insights or examples of working POST token requests from Power Query would be highly appreciated.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Mon, 03 Nov 2025 05:19:00 GMT</pubDate>
    <dc:creator>Yrstruly2021</dc:creator>
    <dc:date>2025-11-03T05:19:00Z</dc:date>
    <item>
      <title>Help with RMS Online API Token Authentication in Power Query – 400 Bad Request Error</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Help-with-RMS-Online-API-Token-Authentication-in-Power-Query-400/m-p/4864399#M63643</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hi everyone,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I’m currently integrating the &lt;STRONG&gt;RMS Online (Staging) API into &lt;STRONG&gt;Power BI using &lt;STRONG&gt;Power Query (M language) to extract data such as voyage information.&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;My goal is to &lt;STRONG&gt;authenticate using the /api/v1/service/token/password endpoint to obtain a &lt;STRONG&gt;Bearer token, which I can then reuse to query endpoints like /api/v1/voyage/find_all.&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;HR /&gt;&lt;H3&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;What I’ve done so far:&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/H3&gt;&lt;P&gt;I built a Power Query script that constructs a JSON body and sends it to the RMS token endpoint.&lt;BR /&gt;Here’s the core part of the script:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;let BaseUrl = "&lt;A href="https://staging.rms-online.co.za" target="_blank" rel="noopener"&gt;https://staging.rms-online.co.za", ClientId = "datalink", Secret = "xxxxxxxxxxxx", Username = "sandbox", Password = "xxxxxxxx", TokenPath = "api/v1/service/token/password", TokenBodyRecord = [ id = ClientId, secret = Secret, username = Username, password = Password ], TokenResponseBinary = Web.Contents( BaseUrl, [ RelativePath = TokenPath, Headers = [Accept = "application/json", #"Content-Type" = "application/json"], Content = Json.FromValue(TokenBodyRecord) ] ), TokenJson = Json.Document(TokenResponseBinary) in TokenJson&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;A href="https://staging.rms-online.co.za" target="_blank" rel="noopener"&gt;&amp;nbsp;&lt;/A&gt;&lt;/PRE&gt;&lt;HR /&gt;&lt;H3&gt;&lt;A href="https://staging.rms-online.co.za" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;The issue:&lt;/STRONG&gt;&lt;/A&gt;&lt;/H3&gt;&lt;P&gt;When I run this query, I receive:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;A href="https://staging.rms-online.co.za" target="_blank" rel="noopener"&gt;&amp;nbsp;&lt;/A&gt;&lt;DIV class=""&gt;&lt;A href="https://staging.rms-online.co.za" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;DataSource.&lt;SPAN class=""&gt;Error: Web.Contents failed &lt;SPAN class=""&gt;to &lt;SPAN class=""&gt;get contents &lt;SPAN class=""&gt;from &lt;SPAN class=""&gt;'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;A href="https://staging.rms-online.co.za/api/v1/service/token/password" target="_blank" rel="noopener"&gt;https://staging.rms-online.co.za/api/v1/service/token/password' (400): Bad Request&lt;/A&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;A href="https://staging.rms-online.co.za/api/v1/service/token/password" target="_blank" rel="noopener"&gt;&amp;nbsp;&lt;/A&gt;&lt;/PRE&gt;&lt;P&gt;Details:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;A href="https://staging.rms-online.co.za/api/v1/service/token/password" target="_blank" rel="noopener"&gt;&amp;nbsp;&lt;/A&gt;&lt;DIV class=""&gt;&lt;A href="https://staging.rms-online.co.za/api/v1/service/token/password" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;DataSourceKind = Web &lt;SPAN class=""&gt;DataSourcePath = &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;A href="https://staging.rms-" target="_blank" rel="noopener"&gt;https://staging.rms-&lt;SPAN class=""&gt;online.co.za/api/v1/service/token/password &lt;SPAN class=""&gt;Url = &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;A href="https://staging.rms-" target="_blank" rel="noopener"&gt;https://staging.rms-&lt;SPAN class=""&gt;online.co.za/api/v1/service/token/password &lt;/SPAN&gt;&lt;/A&gt;&lt;PRE&gt;&lt;A href="https://staging.rms-" target="_blank" rel="noopener"&gt;&amp;nbsp;&lt;/A&gt;&lt;/PRE&gt;&lt;P&gt;I’ve confirmed that:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;The URL is reachable.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;My JSON body is being built correctly.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Credentials in Power BI are set to &lt;STRONG&gt;Anonymous for the domain.&lt;/STRONG&gt;&lt;/P&gt;&lt;HR /&gt;&lt;H3&gt;&lt;A href="https://staging.rms-" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;&lt;STRONG&gt;What I’ve tried so far:&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/A&gt;&lt;/H3&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Sent the same body using &lt;STRONG&gt;Postman (and it works correctly there).&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Tried both:&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Content = Json.FromValue(TokenBodyRecord)&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;and form-encoded body:&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;STRONG&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;Content = Text.ToBinary("id=datalink&amp;amp;secret=33xAI2zjZ6Tpn6oD&amp;amp;username=sandbox&amp;amp;password=vfcAQt") &lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Changed the header between:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;"application/json"&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;"application/x-www-form-urlencoded"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Both attempts return 400 Bad Request in Power BI.&lt;/STRONG&gt;&lt;/P&gt;&lt;HR /&gt;&lt;H3&gt;&lt;STRONG&gt;&lt;STRONG&gt;What I’m trying to achieve:&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/H3&gt;&lt;P&gt;I want to:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Successfully retrieve an &lt;STRONG&gt;access_token from the RMS staging environment in Power Query.&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Use that token to call endpoints such as:&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;STRONG&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;A href="https://staging.rms-online.co.za/api/v1/voyage/find_all" target="_blank" rel="noopener"&gt;https://staging.rms-online.co.za/api/v1/voyage/find_all&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;P&gt;and convert the returned JSON into a table.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 02 Nov 2025 17:51:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Help-with-RMS-Online-API-Token-Authentication-in-Power-Query-400/m-p/4864399#M63643</guid>
      <dc:creator>Yrstruly2021</dc:creator>
      <dc:date>2025-11-02T17:51:11Z</dc:date>
    </item>
    <item>
      <title>Re: Help with RMS Online API Token Authentication in Power Query – 400 Bad Request Error</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Help-with-RMS-Online-API-Token-Authentication-in-Power-Query-400/m-p/4864537#M63647</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/289633"&gt;@Yrstruly2021&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Thanks for reaching out to the Microsoft fabric community forum.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;In Power BI, POST requests made through Web.Contents can only be executed when the data source is configured with Anonymous authentication. So please re check if the Post request from Power Query is going through anonymously. &lt;BR /&gt;&lt;BR /&gt;Also, verify that the URL or API endpoint you’re calling is accurate and matches the one specified in the API documentation.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I hope this information helps. Please do let us know if you have any further queries.&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 03 Nov 2025 04:59:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Help-with-RMS-Online-API-Token-Authentication-in-Power-Query-400/m-p/4864537#M63647</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2025-11-03T04:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: Help with RMS Online API Token Authentication in Power Query – 400 Bad Request Error</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Help-with-RMS-Online-API-Token-Authentication-in-Power-Query-400/m-p/4864552#M63649</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I’ve double-checked and confirmed that my &lt;STRONG&gt;Power BI data source is configured as Anonymous for &lt;A href="https://staging.rms-online.co.za" target="_blank" rel="noopener"&gt;https://staging.rms-online.co.za.&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I’ve also verified that the API endpoint is correct — it matches the one provided in the official &lt;STRONG&gt;RMS Online API Integration Guide:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;POST &lt;SPAN class=""&gt;https:/&lt;SPAN class=""&gt;/staging.rms-online.co.za/api&lt;SPAN class=""&gt;/v1/service&lt;SPAN class=""&gt;/token/password&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;PRE&gt;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;Despite that, I’m still receiving a &lt;STRONG&gt;400 Bad Request error when the request is sent from Power Query, even though the same credentials and JSON body work correctly when tested in &lt;STRONG&gt;Postman.&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;It seems that Power Query may be formatting or encoding the request body differently (perhaps due to how it serialises JSON or sets headers).&lt;/P&gt;&lt;P&gt;Would you happen to know whether &lt;STRONG&gt;RMS’s token endpoint requires a particular header, encoding format, or perhaps &lt;STRONG&gt;does not accept JSON payloads but only x-www-form-urlencoded content?&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Any additional insights or examples of working POST token requests from Power Query would be highly appreciated.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 03 Nov 2025 05:19:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Help-with-RMS-Online-API-Token-Authentication-in-Power-Query-400/m-p/4864552#M63649</guid>
      <dc:creator>Yrstruly2021</dc:creator>
      <dc:date>2025-11-03T05:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: Help with RMS Online API Token Authentication in Power Query – 400 Bad Request Error</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Help-with-RMS-Online-API-Token-Authentication-in-Power-Query-400/m-p/4866734#M63705</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/289633"&gt;@Yrstruly2021&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;If you believe Power Query request is not going as intended,&amp;nbsp;the key step is to verify whether Power Query is sending the request payload in the same way Postman does, this step will compare the actual HTTP requests between power query and Postman.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;Capture the POST request in Postman (which works), then capture the same request from Power Query using a tool such as Fiddler. Comparing them side-by-side will show if there are differences in headers (such as Content-Type), character encoding, or how the body is formatted (e.g., JSON vs x-www-form-urlencoded). Once we see exactly what differs, we can adjust the Power Query request to match the known working format.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I hope this information helps. Please do let us know if you have any further queries.&lt;BR /&gt;Thank you&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 07:26:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Help-with-RMS-Online-API-Token-Authentication-in-Power-Query-400/m-p/4866734#M63705</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2025-11-05T07:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: Help with RMS Online API Token Authentication in Power Query – 400 Bad Request Error</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Help-with-RMS-Online-API-Token-Authentication-in-Power-Query-400/m-p/4870781#M63750</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/289633"&gt;@Yrstruly2021&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Nov 2025 09:22:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Help-with-RMS-Online-API-Token-Authentication-in-Power-Query-400/m-p/4870781#M63750</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2025-11-10T09:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: Help with RMS Online API Token Authentication in Power Query – 400 Bad Request Error</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Help-with-RMS-Online-API-Token-Authentication-in-Power-Query-400/m-p/4874333#M63797</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/289633"&gt;@Yrstruly2021&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;May I check if this issue has been resolved? If not, Please feel free to contact us if you have any further questions.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 13 Nov 2025 11:53:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Help-with-RMS-Online-API-Token-Authentication-in-Power-Query-400/m-p/4874333#M63797</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2025-11-13T11:53:29Z</dc:date>
    </item>
  </channel>
</rss>

