<?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: Data Pipeline API - how to get the parameters of an executed pipeline? in Pipelines</title>
    <link>https://community.fabric.microsoft.com/t5/Pipelines/Data-Pipeline-API-how-to-get-the-parameters-of-an-executed/m-p/4709195#M7907</link>
    <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="903534" data-lia-user-login="dafad_dew" class="lia-mention lia-mention-user"&gt;dafad_dew&lt;/a&gt;,&lt;BR /&gt;Thank you for reaching out to the Microsoft Fabric Community Forum.&lt;BR /&gt;&lt;BR /&gt;You're right while the Monitoring Hub UI in Microsoft Fabric shows the number and details of parameters used during a pipeline run, the current REST APIs do not expose these parameters via the available job instance endpoints.&lt;/P&gt;
&lt;P&gt;Here are two possible approaches:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Use a Notebook or Data Flow activity to write pipeline().parameters to a Lakehouse or file for future tracking.&lt;/LI&gt;
&lt;LI&gt;If triggering the pipeline via the Run on-demand item job API, log the jobId and parameters in your external system for traceability.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I encourage you to submit this as a feature request on the Microsoft Fabric Ideas Forum: &lt;A href="https://community.fabric.microsoft.com/t5/Fabric-Ideas/idb-p/fbc_ideas" target="_blank"&gt;Fabric Ideas - Microsoft Fabric Community&lt;/A&gt; The microsoft team actively reviews ideas with strong community support, and your suggestion could help prioritize this enhancement for a future update.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;If this information is helpful, please &lt;STRONG&gt;“Accept as solution”&lt;/STRONG&gt; and give a &lt;STRONG&gt;"kudos"&lt;/STRONG&gt; to assist other community members in resolving similar issues more efficiently.&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Tue, 27 May 2025 15:47:45 GMT</pubDate>
    <dc:creator>v-ssriganesh</dc:creator>
    <dc:date>2025-05-27T15:47:45Z</dc:date>
    <item>
      <title>Data Pipeline API - how to get the parameters of an executed pipeline?</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Data-Pipeline-API-how-to-get-the-parameters-of-an-executed/m-p/4708457#M7897</link>
      <description>&lt;P&gt;Hi...&lt;/P&gt;&lt;P&gt;Trying to work out if it's possible to get the parameters a data pipeline was executed with.&lt;/P&gt;&lt;P&gt;Looks like the API supports executing a pipeline with parameters:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-factory/pipeline-rest-api#run-on-demand-item-job" target="_self"&gt;REST API - Run on-demand item job&lt;/A&gt;&lt;/P&gt;&lt;P&gt;And it also supports Getting the job instance by ID:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-factory/pipeline-rest-api#get-item-job-instance" target="_self"&gt;REST API - Get item job instance&lt;/A&gt;&lt;/P&gt;&lt;P&gt;But I can't find any API which provides the parameters that were provided to run a job instance.&lt;/P&gt;&lt;P&gt;A GET to&amp;nbsp;&lt;SPAN&gt;workspaces/{workspace id}/items/{pipeline id}/jobs/instances/{job id} does not include the parameters. Sample response is:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{ 
   "id": "{job id}",
   "itemId": "{pipeline id}",
   "jobType": "Pipeline",
   "invokeType": "Manual",
   "status": "InProgress",
   "failureReason": null,
   "rootActivityId": "{id}",
   "startTimeUtc": "2025-05-27T07:44:55.78Z",
   "endTimeUtc": null,
   "ResponseHeaders": {
      &amp;lt;snip&amp;gt;
   },
   "executionDuration": 0
}&lt;/LI-CODE&gt;&lt;P&gt;No parameters &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;The parameters are available in the Fabric workspace via the Monitoring Hub - click on a pipeline run, and a box appears with the number of parameters over on the right hand side:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;click on the number, and the parameter names and values appear.&lt;BR /&gt;&lt;BR /&gt;So how do I get that same list of parameter names and values via the Fabric API?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;DD.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 May 2025 08:23:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Data-Pipeline-API-how-to-get-the-parameters-of-an-executed/m-p/4708457#M7897</guid>
      <dc:creator>dafad_dew</dc:creator>
      <dc:date>2025-05-27T08:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: Data Pipeline API - how to get the parameters of an executed pipeline?</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Data-Pipeline-API-how-to-get-the-parameters-of-an-executed/m-p/4709195#M7907</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="903534" data-lia-user-login="dafad_dew" class="lia-mention lia-mention-user"&gt;dafad_dew&lt;/a&gt;,&lt;BR /&gt;Thank you for reaching out to the Microsoft Fabric Community Forum.&lt;BR /&gt;&lt;BR /&gt;You're right while the Monitoring Hub UI in Microsoft Fabric shows the number and details of parameters used during a pipeline run, the current REST APIs do not expose these parameters via the available job instance endpoints.&lt;/P&gt;
&lt;P&gt;Here are two possible approaches:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Use a Notebook or Data Flow activity to write pipeline().parameters to a Lakehouse or file for future tracking.&lt;/LI&gt;
&lt;LI&gt;If triggering the pipeline via the Run on-demand item job API, log the jobId and parameters in your external system for traceability.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I encourage you to submit this as a feature request on the Microsoft Fabric Ideas Forum: &lt;A href="https://community.fabric.microsoft.com/t5/Fabric-Ideas/idb-p/fbc_ideas" target="_blank"&gt;Fabric Ideas - Microsoft Fabric Community&lt;/A&gt; The microsoft team actively reviews ideas with strong community support, and your suggestion could help prioritize this enhancement for a future update.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;If this information is helpful, please &lt;STRONG&gt;“Accept as solution”&lt;/STRONG&gt; and give a &lt;STRONG&gt;"kudos"&lt;/STRONG&gt; to assist other community members in resolving similar issues more efficiently.&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 27 May 2025 15:47:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Data-Pipeline-API-how-to-get-the-parameters-of-an-executed/m-p/4709195#M7907</guid>
      <dc:creator>v-ssriganesh</dc:creator>
      <dc:date>2025-05-27T15:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Data Pipeline API - how to get the parameters of an executed pipeline?</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Data-Pipeline-API-how-to-get-the-parameters-of-an-executed/m-p/4713983#M7931</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="903534" data-lia-user-login="dafad_dew" class="lia-mention lia-mention-user"&gt;dafad_dew&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;May I ask if you have resolved this issue? If so, please mark it as the solution. This will be helpful for other community members who have similar problems to solve it faster.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2025 11:12:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Data-Pipeline-API-how-to-get-the-parameters-of-an-executed/m-p/4713983#M7931</guid>
      <dc:creator>v-ssriganesh</dc:creator>
      <dc:date>2025-05-30T11:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: Data Pipeline API - how to get the parameters of an executed pipeline?</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Data-Pipeline-API-how-to-get-the-parameters-of-an-executed/m-p/4716408#M7940</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="903534" data-lia-user-login="dafad_dew" class="lia-mention lia-mention-user"&gt;dafad_dew&lt;/a&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. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.&lt;BR /&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jun 2025 08:18:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Data-Pipeline-API-how-to-get-the-parameters-of-an-executed/m-p/4716408#M7940</guid>
      <dc:creator>v-ssriganesh</dc:creator>
      <dc:date>2025-06-02T08:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: Data Pipeline API - how to get the parameters of an executed pipeline?</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Data-Pipeline-API-how-to-get-the-parameters-of-an-executed/m-p/4720649#M7954</link>
      <description>&lt;P&gt;&lt;SPAN data-teams="true"&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="903534" data-lia-user-login="dafad_dew" class="lia-mention lia-mention-user"&gt;dafad_dew&lt;/a&gt;,&lt;BR /&gt;I hope this information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, please &lt;STRONG&gt;accept it as a solution&lt;/STRONG&gt; and give it a '&lt;STRONG&gt;Kudos&lt;/STRONG&gt;' so other community members with similar problems can find a solution faster.&lt;BR /&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 05:02:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Data-Pipeline-API-how-to-get-the-parameters-of-an-executed/m-p/4720649#M7954</guid>
      <dc:creator>v-ssriganesh</dc:creator>
      <dc:date>2025-06-05T05:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: Data Pipeline API - how to get the parameters of an executed pipeline?</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Data-Pipeline-API-how-to-get-the-parameters-of-an-executed/m-p/4794997#M8329</link>
      <description>&lt;P&gt;Upvoted the feature request&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="903534" data-lia-user-login="dafad_dew" class="lia-mention lia-mention-user"&gt;dafad_dew&lt;/a&gt;&amp;nbsp;created at&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/Fabric-Ideas/Job-Instance-API-Make-pipeline-parameters-available/idi-p/4709204" target="_blank"&gt;Job Instance API - Make pipeline parameters availa... - Microsoft Fabric Community&lt;/A&gt;. My team is looking for this feature to support programatic pipeline run resubmission.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 00:25:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Data-Pipeline-API-how-to-get-the-parameters-of-an-executed/m-p/4794997#M8329</guid>
      <dc:creator>Jing1018</dc:creator>
      <dc:date>2025-08-13T00:25:11Z</dc:date>
    </item>
  </channel>
</rss>

