<?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: Power Query Defender Advanced hunting bad request 400 for some tables. in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Power-Query-Defender-Advanced-hunting-bad-request-400-for-some/m-p/4833677#M63189</link>
    <description>&lt;P&gt;Thanks for your help,&amp;nbsp;&lt;/P&gt;&lt;P&gt;you were right that the API endpoint is not the correct one, but it wasn't a simple switch, cause the second url apperantly needs to be passed a token, which needs to be called from power query itself:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Scope = "https://api.security.microsoft.com/.default",

    // Construct the body as a record (Power Query will handle encoding)
    TokenRequestBody = [
        grant_type = "client_credentials",
        client_id = ClientId,
        client_secret = ClientSecret,
        scope = Scope
    ],

    // Convert the record to form-urlencoded text
    FormBody = Text.ToBinary(Uri.BuildQueryString(TokenRequestBody)),

    // Make the token request
    TokenResponse = Json.Document(
        Web.Contents(
            "https://login.microsoftonline.com/" &amp;amp; TenantId &amp;amp; "/oauth2/v2.0/token",
            [
                Content = FormBody,
                Headers = [
                    #"Content-Type" = "application/x-www-form-urlencoded",
                    Accept = "application/json"
                ]
            ]
        )
    ),

    // Extract the access token
    AccessToken = TokenResponse[access_token],&lt;/LI-CODE&gt;&lt;P&gt;ones the token is obtained,&amp;nbsp;&lt;BR /&gt;you will proceed and call the api, passing the token&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;    AdvancedHuntingQuery = Json.FromValue([Query = FullQuery]),


    HuntingResponse = Json.Document(
        Web.Contents(
            HuntingUrl,
            [
                Content=AdvancedHuntingQuery,
                Headers = [
                    Authorization = "Bearer " &amp;amp; AccessToken,
                    #"Content-Type" = "application/json",
                    Accept = "application/json"
                ]
            ]
        )
    ),
 TypeMap = #table(
            { "Type", "PowerBiType" },
            {
                { "Double",   Double.Type },
                { "Int64",    Int64.Type },
                { "Int32",    Int32.Type },
                { "Int16",    Int16.Type },
                { "UInt64",   Number.Type },
                { "UInt32",   Number.Type },
                { "UInt16",   Number.Type },
                { "Byte",     Byte.Type },
                { "Single",   Single.Type },
                { "Decimal",  Decimal.Type },
                { "TimeSpan", Duration.Type },
                { "DateTime", DateTimeZone.Type },
                { "String",   Text.Type },
                { "Boolean",  Logical.Type },
                { "SByte",    Logical.Type },
                { "Guid",     Text.Type }
            }),

        Schema = Table.FromRecords(HuntingResponse[Schema]),
        TypedSchema = Table.Join(Table.SelectColumns(Schema, {"Name", "Type"}), {"Type"}, TypeMap , {"Type"}),
        Results = HuntingResponse[Results],
        Rows = Table.FromRecords(Results, Schema[Name]),
        Table = Table.TransformColumnTypes(Rows, Table.ToList(TypedSchema, (c) =&amp;gt; {c{0}, c{2}}))

    in Table&lt;/LI-CODE&gt;&lt;P&gt;The only withdraw that i am looking to solve now is the authentication. I am unable to use a service principal authentication, but i am hard coding the parameters needed by the query, Tenant_ID, Client_ID and Client_Secret.&lt;BR /&gt;Is there another way to authenticate and get the token without hard coding the service principal parameters into the dataflow?&lt;/P&gt;</description>
    <pubDate>Tue, 23 Sep 2025 19:08:34 GMT</pubDate>
    <dc:creator>mkjit256</dc:creator>
    <dc:date>2025-09-23T19:08:34Z</dc:date>
    <item>
      <title>Power Query Defender Advanced hunting bad request 400 for some tables.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-Query-Defender-Advanced-hunting-bad-request-400-for-some/m-p/4832739#M63174</link>
      <description>&lt;P&gt;Hello i am trying to connect to Defender XRD api using a service principal authentication following the example that has been provided in MS documentation.&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/defender-endpoint/api/api-power-bi" target="_blank" rel="noopener"&gt;Microsoft Defender for Endpoint APIs connection to Power BI - Microsoft Defender for Endpoint | Microsoft Learn.&lt;/A&gt;&lt;BR /&gt;I am connecting from a DataFlow Gen2 in Fabric.&amp;nbsp;&lt;BR /&gt;For DeviceEvents table:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let
        AdvancedHuntingQuery = "DeviceEvents | where ActionType contains 'Anti' | limit 20",

        HuntingUrl = "https://api.securitycenter.microsoft.com/api/advancedqueries",

        Response = Json.Document(Web.Contents(HuntingUrl, [Query=[key=AdvancedHuntingQuery]])),

        TypeMap = #table(
            { "Type", "PowerBiType" },
            {
                { "Double",   Double.Type },
                { "Int64",    Int64.Type },
                { "Int32",    Int32.Type },
                { "Int16",    Int16.Type },
                { "UInt64",   Number.Type },
                { "UInt32",   Number.Type },
                { "UInt16",   Number.Type },
                { "Byte",     Byte.Type },
                { "Single",   Single.Type },
                { "Decimal",  Decimal.Type },
                { "TimeSpan", Duration.Type },
                { "DateTime", DateTimeZone.Type },
                { "String",   Text.Type },
                { "Boolean",  Logical.Type },
                { "SByte",    Logical.Type },
                { "Guid",     Text.Type }
            }),

        Schema = Table.FromRecords(Response[Schema]),
        TypedSchema = Table.Join(Table.SelectColumns(Schema, {"Name", "Type"}), {"Type"}, TypeMap , {"Type"}),
        Results = Response[Results],
        Rows = Table.FromRecords(Results, Schema[Name]),
        Table = Table.TransformColumnTypes(Rows, Table.ToList(TypedSchema, (c) =&amp;gt; {c{0}, c{2}}))

    in Table&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;The request suceed to connect with no issues.&lt;BR /&gt;For EmailEvents table&lt;BR /&gt;However when i try to change the query in the AdvancedHuntingQuery Step:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let
        AdvancedHuntingQuery = "EmailEvents | limit 20",

        HuntingUrl = "https://api.securitycenter.microsoft.com/api/advancedqueries",

        Response = Json.Document(Web.Contents(HuntingUrl, [Query=[key=AdvancedHuntingQuery]])),

        TypeMap = #table(
            { "Type", "PowerBiType" },
            {
                { "Double",   Double.Type },
                { "Int64",    Int64.Type },
                { "Int32",    Int32.Type },
                { "Int16",    Int16.Type },
                { "UInt64",   Number.Type },
                { "UInt32",   Number.Type },
                { "UInt16",   Number.Type },
                { "Byte",     Byte.Type },
                { "Single",   Single.Type },
                { "Decimal",  Decimal.Type },
                { "TimeSpan", Duration.Type },
                { "DateTime", DateTimeZone.Type },
                { "String",   Text.Type },
                { "Boolean",  Logical.Type },
                { "SByte",    Logical.Type },
                { "Guid",     Text.Type }
            }),

        Schema = Table.FromRecords(Response[Schema]),
        TypedSchema = Table.Join(Table.SelectColumns(Schema, {"Name", "Type"}), {"Type"}, TypeMap , {"Type"}),
        Results = Response[Results],
        Rows = Table.FromRecords(Results, Schema[Name]),
        Table = Table.TransformColumnTypes(Rows, Table.ToList(TypedSchema, (c) =&amp;gt; {c{0}, c{2}}))

    in Table&lt;/LI-CODE&gt;&lt;P&gt;i am getting a Web.Contents&amp;nbsp;&lt;SPAN&gt; failed to get contents from '&lt;A href="https://api.securitycenter.microsoft.com/api/advancedqueries?key=EmailEvents%7C%20limit%2020" target="_blank" rel="noopener"&gt;https://api.securitycenter.microsoft.com/api/advancedqueries?key=EmailEvents%7C%20limit%2020&lt;/A&gt;' (400): Bad Request.&lt;BR /&gt;&lt;BR /&gt;Any help is appreciated in explaining or solving the issue is well appreciated. Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Sep 2025 20:58:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-Query-Defender-Advanced-hunting-bad-request-400-for-some/m-p/4832739#M63174</guid>
      <dc:creator>mkjit256</dc:creator>
      <dc:date>2025-09-22T20:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: Power Query Defender Advanced hunting bad request 400 for some tables.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-Query-Defender-Advanced-hunting-bad-request-400-for-some/m-p/4833311#M63186</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="368866" data-lia-user-login="mkjit256" class="lia-mention lia-mention-user"&gt;mkjit256&lt;/a&gt;&amp;nbsp;, Thank you for reaching out to the Microsoft Fabric Community Forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DeviceEvents is part of Microsoft Defender for Endpoint (MDE), which uses the endpoint &lt;A href="https://api.securitycenter.microsoft.com/api/advancedqueries" target="_blank"&gt;https://api.securitycenter.microsoft.com/api/advancedqueries&lt;/A&gt;, while EmailEvents belongs to Microsoft 365 Defender (XDR), which requires the endpoint &lt;A href="https://api.security.microsoft.com/api/advancedqueries" target="_blank"&gt;https://api.security.microsoft.com/api/advancedqueries&lt;/A&gt;. If you send an EmailEvents query to the MDE endpoint, you’ll always get a 400 error because that table doesn’t exist there. Point your query at the Microsoft 365 Defender endpoint and ensure your service principal has the corresponding Microsoft 365 Defender API permission in Entra ID.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/defender-endpoint/api/run-advanced-query-api" target="_blank"&gt;Advanced Hunting API - Microsoft Defender for Endpoint | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/defender-xdr/api-advanced-hunting" target="_blank"&gt;Microsoft Defender XDR advanced hunting API - Microsoft Defender XDR | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/defender-endpoint/api/exposed-apis-list" target="_blank"&gt;Supported Microsoft Defender for Endpoint APIs - Microsoft Defender for Endpoint | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/graph/api/resources/security-api-overview?view=graph-rest-1.0" target="_blank"&gt;Use the Microsoft Graph security API - Microsoft Graph v1.0 | Microsoft Learn&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2025 10:47:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-Query-Defender-Advanced-hunting-bad-request-400-for-some/m-p/4833311#M63186</guid>
      <dc:creator>v-hashadapu</dc:creator>
      <dc:date>2025-09-23T10:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: Power Query Defender Advanced hunting bad request 400 for some tables.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-Query-Defender-Advanced-hunting-bad-request-400-for-some/m-p/4833677#M63189</link>
      <description>&lt;P&gt;Thanks for your help,&amp;nbsp;&lt;/P&gt;&lt;P&gt;you were right that the API endpoint is not the correct one, but it wasn't a simple switch, cause the second url apperantly needs to be passed a token, which needs to be called from power query itself:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Scope = "https://api.security.microsoft.com/.default",

    // Construct the body as a record (Power Query will handle encoding)
    TokenRequestBody = [
        grant_type = "client_credentials",
        client_id = ClientId,
        client_secret = ClientSecret,
        scope = Scope
    ],

    // Convert the record to form-urlencoded text
    FormBody = Text.ToBinary(Uri.BuildQueryString(TokenRequestBody)),

    // Make the token request
    TokenResponse = Json.Document(
        Web.Contents(
            "https://login.microsoftonline.com/" &amp;amp; TenantId &amp;amp; "/oauth2/v2.0/token",
            [
                Content = FormBody,
                Headers = [
                    #"Content-Type" = "application/x-www-form-urlencoded",
                    Accept = "application/json"
                ]
            ]
        )
    ),

    // Extract the access token
    AccessToken = TokenResponse[access_token],&lt;/LI-CODE&gt;&lt;P&gt;ones the token is obtained,&amp;nbsp;&lt;BR /&gt;you will proceed and call the api, passing the token&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;    AdvancedHuntingQuery = Json.FromValue([Query = FullQuery]),


    HuntingResponse = Json.Document(
        Web.Contents(
            HuntingUrl,
            [
                Content=AdvancedHuntingQuery,
                Headers = [
                    Authorization = "Bearer " &amp;amp; AccessToken,
                    #"Content-Type" = "application/json",
                    Accept = "application/json"
                ]
            ]
        )
    ),
 TypeMap = #table(
            { "Type", "PowerBiType" },
            {
                { "Double",   Double.Type },
                { "Int64",    Int64.Type },
                { "Int32",    Int32.Type },
                { "Int16",    Int16.Type },
                { "UInt64",   Number.Type },
                { "UInt32",   Number.Type },
                { "UInt16",   Number.Type },
                { "Byte",     Byte.Type },
                { "Single",   Single.Type },
                { "Decimal",  Decimal.Type },
                { "TimeSpan", Duration.Type },
                { "DateTime", DateTimeZone.Type },
                { "String",   Text.Type },
                { "Boolean",  Logical.Type },
                { "SByte",    Logical.Type },
                { "Guid",     Text.Type }
            }),

        Schema = Table.FromRecords(HuntingResponse[Schema]),
        TypedSchema = Table.Join(Table.SelectColumns(Schema, {"Name", "Type"}), {"Type"}, TypeMap , {"Type"}),
        Results = HuntingResponse[Results],
        Rows = Table.FromRecords(Results, Schema[Name]),
        Table = Table.TransformColumnTypes(Rows, Table.ToList(TypedSchema, (c) =&amp;gt; {c{0}, c{2}}))

    in Table&lt;/LI-CODE&gt;&lt;P&gt;The only withdraw that i am looking to solve now is the authentication. I am unable to use a service principal authentication, but i am hard coding the parameters needed by the query, Tenant_ID, Client_ID and Client_Secret.&lt;BR /&gt;Is there another way to authenticate and get the token without hard coding the service principal parameters into the dataflow?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2025 19:08:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-Query-Defender-Advanced-hunting-bad-request-400-for-some/m-p/4833677#M63189</guid>
      <dc:creator>mkjit256</dc:creator>
      <dc:date>2025-09-23T19:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: Power Query Defender Advanced hunting bad request 400 for some tables.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-Query-Defender-Advanced-hunting-bad-request-400-for-some/m-p/4834887#M63206</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="368866" data-lia-user-login="mkjit256" class="lia-mention lia-mention-user"&gt;mkjit256&lt;/a&gt;&amp;nbsp;, Thank you for reaching out to the Microsoft Fabric Community Forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Right now, your code works because you hard-coded the tenant, client id and secret but that’s not a safe way to keep it running long-term. The proper way in Fabric is to avoid putting secrets directly into your M script. Store the client secret in Azure Key Vault and let your Fabric workspace managed identity pull it at runtime. That way the query code stays the same but instead of writing the secret, you just call the Key Vault reference. Secrets can then be rotated or revoked without you touching the dataflow.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you can’t set up Key Vault yet, the next-best option is to create a connection in Fabric that holds the service principal details. Your dataflow then uses that connection, so the credentials live in Fabric’s secure store and not in your script. Either way, the token flow you built stays the same, the only change is where the secret comes from. This keeps your setup secure and much easier to maintain.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blog.fabric.microsoft.com/en-US/blog/authenticate-to-fabric-data-connections-using-azure-key-vault-stored-secrets-preview/" target="_blank"&gt;Authenticate to Fabric data connections using Azure Key Vault stored secrets (Preview) | Microsoft Fabric Blog | Microsoft Fabric&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-factory/azure-key-vault-reference-configure" target="_blank"&gt;Configure AKV references - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-factory/azure-key-vault-reference-overview" target="_blank"&gt;Azure Key Vault Reference overview (Preview) - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/entra/identity-platform/v2-oauth2-client-creds-grant-flow" target="_blank"&gt;OAuth 2.0 client credentials flow on the Microsoft identity platform - Microsoft identity platform | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/defender-xdr/api-advanced-hunting?view=o365-worldwide" target="_blank"&gt;Microsoft Defender XDR advanced hunting API - Microsoft Defender XDR | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-factory/connector-overview" target="_blank"&gt;Connector overview - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2025 06:13:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-Query-Defender-Advanced-hunting-bad-request-400-for-some/m-p/4834887#M63206</guid>
      <dc:creator>v-hashadapu</dc:creator>
      <dc:date>2025-09-25T06:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: Power Query Defender Advanced hunting bad request 400 for some tables.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-Query-Defender-Advanced-hunting-bad-request-400-for-some/m-p/4837634#M63253</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="368866" data-lia-user-login="mkjit256" class="lia-mention lia-mention-user"&gt;mkjit256&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;SPAN data-teams="true"&gt;hope you are doing great. May we know if your issue is solved or if you are still experiencing difficulties. Please share the details as it will help the community, especially others with similar issues.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Sep 2025 08:47:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-Query-Defender-Advanced-hunting-bad-request-400-for-some/m-p/4837634#M63253</guid>
      <dc:creator>v-hashadapu</dc:creator>
      <dc:date>2025-09-29T08:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: Power Query Defender Advanced hunting bad request 400 for some tables.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-Query-Defender-Advanced-hunting-bad-request-400-for-some/m-p/4841572#M63338</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="368866" data-lia-user-login="mkjit256" class="lia-mention lia-mention-user"&gt;mkjit256&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;SPAN data-teams="true"&gt;Hope you're doing okay! May we know if it worked for you, or are you still experiencing difficulties? Let us know — your feedback can really help others in the same situation.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 12:03:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-Query-Defender-Advanced-hunting-bad-request-400-for-some/m-p/4841572#M63338</guid>
      <dc:creator>v-hashadapu</dc:creator>
      <dc:date>2025-10-03T12:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: Power Query Defender Advanced hunting bad request 400 for some tables.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-Query-Defender-Advanced-hunting-bad-request-400-for-some/m-p/4841773#M63339</link>
      <description>&lt;P&gt;I ended&amp;nbsp; up using notebooks instead of&amp;nbsp; Dataflow Gen2.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 15:10:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-Query-Defender-Advanced-hunting-bad-request-400-for-some/m-p/4841773#M63339</guid>
      <dc:creator>mkjit256</dc:creator>
      <dc:date>2025-10-03T15:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: Power Query Defender Advanced hunting bad request 400 for some tables.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-Query-Defender-Advanced-hunting-bad-request-400-for-some/m-p/4842716#M63344</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="368866" data-lia-user-login="mkjit256" class="lia-mention lia-mention-user"&gt;mkjit256&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for the update; utilizing notebooks is a wise decision.&lt;/P&gt;
&lt;P&gt;If you have any further questions, please do not hesitate to create a new post. We are always available to support you.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Oct 2025 04:15:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-Query-Defender-Advanced-hunting-bad-request-400-for-some/m-p/4842716#M63344</guid>
      <dc:creator>v-hashadapu</dc:creator>
      <dc:date>2025-10-06T04:15:10Z</dc:date>
    </item>
  </channel>
</rss>

