<?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: New to REST and WFA (4.1) -- issues with calling workflows with POST or DELETE in Active IQ Unified Manager Discussions</title>
    <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/New-to-REST-and-WFA-4-1-issues-with-calling-workflows-with-POST-or-DELETE/m-p/138716#M25240</link>
    <description>&lt;P&gt;Well...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In explaing how I am right and WFA is wrong, i answered my own question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;WTF you ask?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Heh.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I will show you the mistake i made using my example from earlier.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Diffrences that made it work are now in &lt;FONT size="3" color="#ff0000"&gt;&lt;STRONG&gt;RED.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;curl -k -u&amp;nbsp;USERNAME:PASS --header "Content-Type: application/xml" --header "Accept: text/plain" -d '&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&amp;lt;workflowInput&amp;gt;&amp;lt;userInputValues&amp;gt;&amp;lt;userInputEntry key="hostName" value="TESTTESTTEST"&lt;/STRONG&gt;&lt;FONT size="3"&gt;&lt;FONT color="#ff0000"&gt;/&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT size="1"&gt;&amp;gt;&lt;/FONT&gt;&lt;FONT color="#ff0000"&gt;&amp;lt;/userInputEntry&lt;FONT size="3"&gt;&amp;gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="1"&gt;&amp;lt;/userInputValues&amp;gt;&amp;lt;/workflowInput&amp;gt;' -X POST https://WFAserver:443/rest/testIgroup/jobs&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the -k ignores SSH keys&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the -u allows you to provide initial challange authentication&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the --header is where you call out XML or JSON and Accept type per the examples in the docs&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the -X is where you specify GET/POST/PUT/DELETE&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the -d is where you put your data payload, in this case an XML sting&lt;/P&gt;
&lt;P style="padding-left: 90px;"&gt;'&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;/P&gt;
&lt;P style="padding-left: 120px;"&gt;&amp;lt;workflowInput&amp;gt;&lt;/P&gt;
&lt;P style="padding-left: 150px;"&gt;&amp;lt;userInputValues&amp;gt;&lt;/P&gt;
&lt;P style="padding-left: 180px;"&gt;&amp;lt;userInputEntry key="hostName" value="TESTTESTTEST"&lt;FONT color="#ff0000"&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;/&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&amp;gt; ### Oops, this needs to be removed&lt;/P&gt;
&lt;P style="padding-left: 180px;"&gt;&lt;FONT size="3"&gt;&lt;STRONG&gt;&lt;FONT color="#ff0000"&gt;&amp;lt;/userInputEntry&amp;gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt; ### Oops, i didn't close my user input tag&lt;/P&gt;
&lt;P style="padding-left: 150px;"&gt;&amp;lt;/userInputValues&amp;gt;&lt;/P&gt;
&lt;P style="padding-left: 120px;"&gt;&amp;lt;/workflowInput&amp;gt;'&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;all of this is followed by the URI&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;&lt;FONT size="3"&gt;&lt;STRONG&gt;Corrected CURL&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;&lt;FONT size="1" color="#000000"&gt;&lt;STRONG&gt;curl -k -u&amp;nbsp;USERNAME:PASS --header "Content-Type: application/xml" --header "Accept: text/plain" -d '&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&amp;lt;workflowInput&amp;gt;&amp;lt;userInputValues&amp;gt;&amp;lt;userInputEntry key="hostName" value="TESTTESTTEST"&amp;gt;&amp;lt;/userInputEntry&amp;gt;&amp;lt;/userInputValues&amp;gt;&amp;lt;/workflowInput&amp;gt;' -X POST https://WFAserver:443/rest/testIgroup/jobs&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For posterity, it now returns a pile of things.&amp;nbsp; One of which is the jobId number.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;jobId="####"&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you have this job ID, you can then loop looking for the jobstatus&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;&lt;FONT size="1"&gt;curl -k -u&amp;nbsp;USERNAME:PASS --header "Content-Type: application/xml" -X&amp;nbsp;GET https://WFAserver:443/rest/rest/workflows/jobs/####&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;&lt;FONT size="1"&gt;There is a lot of data returned, but this is what i was looking for&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;&amp;lt;jobStatus&amp;gt;SCHEDULED&amp;lt;/jobStatus&amp;gt;&amp;lt;jobType&amp;gt;Workflow Execution -&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;&amp;lt;jobStatus&amp;gt;EXECUTING&amp;lt;/jobStatus&amp;gt;&amp;lt;jobType&amp;gt;Workflow Execution - ....&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;&amp;lt;jobStatus&amp;gt;FAILED&amp;lt;/jobStatus&amp;gt;&amp;lt;errorMessage&amp;gt;Failed to connect to cluster node: ...&lt;FONT color="#ff0000"&gt;&lt;STRONG&gt;(i disconnected my arrays on purpose so i can test w/o worry)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 08 Mar 2018 21:29:07 GMT</pubDate>
    <dc:creator>SuperMegaGreat</dc:creator>
    <dc:date>2018-03-08T21:29:07Z</dc:date>
    <item>
      <title>New to REST and WFA (4.1) -- issues with calling workflows with POST or DELETE</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/New-to-REST-and-WFA-4-1-issues-with-calling-workflows-with-POST-or-DELETE/m-p/138710#M25237</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've been googling, reading random posts on this forum and pouring over examples in:&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;A href="https://MYWFAHOST/rest/docs/#!/Execution%3AWorkflows/executeWorkflow" target="_blank"&gt;https://MYWFAHOST/rest/docs/#!/Execution%3AWorkflows/executeWorkflow&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've been able to make GET calls works, but am yet to make a POST/PUT/DELETE do anything helpful.&lt;/P&gt;
&lt;P&gt;I starteed with a hugely basic workflow in an effort get passing things via REST down pat.&amp;nbsp; I've kept everythign in CURL, as that is what the examples noted above use and i'm wanting things to be easy.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For those where i currently am, here is a basic run down of what i know so far.&lt;/P&gt;
&lt;P&gt;there are lots of ways to authenticate, but while learing BASIC is the one you should stick with.&amp;nbsp; its super easy.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;curl -k -u&amp;nbsp;USERNAME:PASS --header "Content-Type: application/xml" -X GET &lt;A href="https://WFAserver:443/rest/workflows" target="_blank"&gt;https://WFAserver:443/rest/workflows&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the -k ignores SSH keys&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the -u allows you to provide initial challange authentication&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the --header is where you call out XML or JSON&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the -X is where you specify GET/POST/PUT/DELETE&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;all of this is followed by the URI&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This also works with out issue:&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;curl -k -u&amp;nbsp;USERNAME:PASS --header "Content-Type: application/xml" -X GET &lt;A href="https://WFAserver:443/rest/workflows?name=testIgroup" target="_blank"&gt;https://WFAserver:443/rest/workflows?name=testIgroup&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Easy right?&amp;nbsp; Thats what i thought too.&amp;nbsp; The above work every time with out issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So when i tried to preform a POST to create an empty iGroup, my workflow has all the things in it to work and DOES work from the gui.&amp;nbsp; Tthe only user input is "hostName", in an effor to make this as easy as possible.&amp;nbsp; Under the&amp;nbsp;advanced tab, i set the custom URI to "/testIgroup"&amp;nbsp; In theory, it would be as hard as calling this:&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;curl -k -u&amp;nbsp;USERNAME:PASS --header "Content-Type: application/xml" --header "Accept: text/plain" -d '&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&amp;lt;workflowInput&amp;gt;&amp;lt;userInputValues&amp;gt;&amp;lt;userInputEntry key="hostName" value="TESTTESTTEST"/&amp;gt;&amp;lt;/userInputValues&amp;gt;&amp;lt;/workflowInput&amp;gt;' -X POST &lt;A href="https://WFAserver:443/rest/testIgroup/jobs" target="_blank"&gt;https://WFAserver:443/rest/testIgroup/jobs&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the -k ignores SSH keys&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the -u allows you to provide initial challange authentication&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the --header is where you call out XML or JSON and Accept type per the examples in the docs&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the -X is where you specify GET/POST/PUT/DELETE&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the -d is where you put your data payload, in this case an XML sting&lt;/P&gt;
&lt;P style="padding-left: 90px;"&gt;'&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;/P&gt;
&lt;P style="padding-left: 120px;"&gt;&amp;lt;workflowInput&amp;gt;&lt;/P&gt;
&lt;P style="padding-left: 150px;"&gt;&amp;lt;userInputValues&amp;gt;&lt;/P&gt;
&lt;P style="padding-left: 180px;"&gt;&amp;lt;userInputEntry key="hostName" value="TESTTESTTEST"/&amp;gt;&lt;/P&gt;
&lt;P style="padding-left: 150px;"&gt;&amp;lt;/userInputValues&amp;gt;&lt;/P&gt;
&lt;P style="padding-left: 120px;"&gt;&amp;lt;/workflowInput&amp;gt;'&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;all of this is followed by the URI&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i get this:&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;FONT color="#ff0000"&gt;No resource method found for POST, return 405 with Allow header&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I then tried using a DELETE method from a post i read from "sinhaa".&amp;nbsp; I changed the type to DELETE and put /{hostName}/testIgroup in the custom URI area under the advanced tab.&lt;/P&gt;
&lt;P&gt;then attempted to call it with this:&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;curl -k -u&amp;nbsp;USERNAME:PASS --header "Content-Type: application/xml" -X DELETE &lt;A href="https://WFAserver:443/rest/TESTtestTEST/testIgroup" target="_blank"&gt;https://WFAserver:443/rest/TESTtestTEST/testIgroup&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;I was hopeful, but this also didn't work for me.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;FONT color="#ff0000"&gt;No resource method found for DELETE, return 405 with Allow header&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;So.&amp;nbsp; I'm going in circles trying to figure this out and am now giving up and asking for help.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt;A) what exactally is a "workflow_exectuion_id"&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt;B) what is a "workflow_uuid"&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt;C) what on earth am i doing wrong?&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;Thanks in advance!&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 13:56:46 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/New-to-REST-and-WFA-4-1-issues-with-calling-workflows-with-POST-or-DELETE/m-p/138710#M25237</guid>
      <dc:creator>SuperMegaGreat</dc:creator>
      <dc:date>2025-06-04T13:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: New to REST and WFA (4.1) -- issues with calling workflows with POST or DELETE</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/New-to-REST-and-WFA-4-1-issues-with-calling-workflows-with-POST-or-DELETE/m-p/138716#M25240</link>
      <description>&lt;P&gt;Well...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In explaing how I am right and WFA is wrong, i answered my own question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;WTF you ask?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Heh.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I will show you the mistake i made using my example from earlier.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Diffrences that made it work are now in &lt;FONT size="3" color="#ff0000"&gt;&lt;STRONG&gt;RED.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;curl -k -u&amp;nbsp;USERNAME:PASS --header "Content-Type: application/xml" --header "Accept: text/plain" -d '&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&amp;lt;workflowInput&amp;gt;&amp;lt;userInputValues&amp;gt;&amp;lt;userInputEntry key="hostName" value="TESTTESTTEST"&lt;/STRONG&gt;&lt;FONT size="3"&gt;&lt;FONT color="#ff0000"&gt;/&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT size="1"&gt;&amp;gt;&lt;/FONT&gt;&lt;FONT color="#ff0000"&gt;&amp;lt;/userInputEntry&lt;FONT size="3"&gt;&amp;gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="1"&gt;&amp;lt;/userInputValues&amp;gt;&amp;lt;/workflowInput&amp;gt;' -X POST https://WFAserver:443/rest/testIgroup/jobs&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the -k ignores SSH keys&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the -u allows you to provide initial challange authentication&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the --header is where you call out XML or JSON and Accept type per the examples in the docs&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the -X is where you specify GET/POST/PUT/DELETE&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;the -d is where you put your data payload, in this case an XML sting&lt;/P&gt;
&lt;P style="padding-left: 90px;"&gt;'&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;/P&gt;
&lt;P style="padding-left: 120px;"&gt;&amp;lt;workflowInput&amp;gt;&lt;/P&gt;
&lt;P style="padding-left: 150px;"&gt;&amp;lt;userInputValues&amp;gt;&lt;/P&gt;
&lt;P style="padding-left: 180px;"&gt;&amp;lt;userInputEntry key="hostName" value="TESTTESTTEST"&lt;FONT color="#ff0000"&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;/&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&amp;gt; ### Oops, this needs to be removed&lt;/P&gt;
&lt;P style="padding-left: 180px;"&gt;&lt;FONT size="3"&gt;&lt;STRONG&gt;&lt;FONT color="#ff0000"&gt;&amp;lt;/userInputEntry&amp;gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt; ### Oops, i didn't close my user input tag&lt;/P&gt;
&lt;P style="padding-left: 150px;"&gt;&amp;lt;/userInputValues&amp;gt;&lt;/P&gt;
&lt;P style="padding-left: 120px;"&gt;&amp;lt;/workflowInput&amp;gt;'&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;all of this is followed by the URI&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;&lt;FONT size="3"&gt;&lt;STRONG&gt;Corrected CURL&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;&lt;FONT size="1" color="#000000"&gt;&lt;STRONG&gt;curl -k -u&amp;nbsp;USERNAME:PASS --header "Content-Type: application/xml" --header "Accept: text/plain" -d '&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&amp;lt;workflowInput&amp;gt;&amp;lt;userInputValues&amp;gt;&amp;lt;userInputEntry key="hostName" value="TESTTESTTEST"&amp;gt;&amp;lt;/userInputEntry&amp;gt;&amp;lt;/userInputValues&amp;gt;&amp;lt;/workflowInput&amp;gt;' -X POST https://WFAserver:443/rest/testIgroup/jobs&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For posterity, it now returns a pile of things.&amp;nbsp; One of which is the jobId number.&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;jobId="####"&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you have this job ID, you can then loop looking for the jobstatus&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;STRONG&gt;&lt;FONT size="1"&gt;curl -k -u&amp;nbsp;USERNAME:PASS --header "Content-Type: application/xml" -X&amp;nbsp;GET https://WFAserver:443/rest/rest/workflows/jobs/####&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;&lt;FONT size="1"&gt;There is a lot of data returned, but this is what i was looking for&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;&amp;lt;jobStatus&amp;gt;SCHEDULED&amp;lt;/jobStatus&amp;gt;&amp;lt;jobType&amp;gt;Workflow Execution -&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;&amp;lt;jobStatus&amp;gt;EXECUTING&amp;lt;/jobStatus&amp;gt;&amp;lt;jobType&amp;gt;Workflow Execution - ....&lt;/P&gt;
&lt;P style="padding-left: 60px;"&gt;&amp;lt;jobStatus&amp;gt;FAILED&amp;lt;/jobStatus&amp;gt;&amp;lt;errorMessage&amp;gt;Failed to connect to cluster node: ...&lt;FONT color="#ff0000"&gt;&lt;STRONG&gt;(i disconnected my arrays on purpose so i can test w/o worry)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 21:29:07 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/New-to-REST-and-WFA-4-1-issues-with-calling-workflows-with-POST-or-DELETE/m-p/138716#M25240</guid>
      <dc:creator>SuperMegaGreat</dc:creator>
      <dc:date>2018-03-08T21:29:07Z</dc:date>
    </item>
  </channel>
</rss>

