<?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: how to use the web api to run the run-script in API / CLI Discussion</title>
    <link>https://community.checkpoint.com/t5/API-CLI-Discussion/how-to-use-the-web-api-to-run-the-run-script/m-p/23591#M1453</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First of all, in your example, it looks like you're posting to &lt;A href="https://management-ip/run-script"&gt;https://management-ip/run-script&lt;/A&gt;&amp;nbsp;which is not correct (and would explain the 404 error).&lt;/P&gt;&lt;P&gt;And yes, you would need to do this through the management IP (not the individual gateways) to the individual gateways.&lt;/P&gt;&lt;P&gt;Now what I'm not sure about is if you have to specify the individual gateways or if you can just do it to the cluster object.&lt;/P&gt;&lt;P&gt;Since you're not modifying a rulebase or an object, this action should not require a publish.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Jan 2018 16:52:04 GMT</pubDate>
    <dc:creator>PhoneBoy</dc:creator>
    <dc:date>2018-01-18T16:52:04Z</dc:date>
    <item>
      <title>how to use the web api to run the run-script</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/how-to-use-the-web-api-to-run-the-run-script/m-p/23590#M1452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a question about how to use the web api to run the run-script. We have a security concern with our current setup. We are using “Check Point's software version R80.10 - Build 423”. Integrated with Aruba and the identity access blade.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have a beautiful integration with Aruba sending a post to Check Point, and then removing it when a user logs out. This is using json to post to the cluster vip. For my setup (&lt;SPAN style="font-size: 9.0pt; color: #505050; background: #FAFAFA;"&gt;/_IA_API/v1.0/add-identity&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left: 36.0pt;"&gt;{"shared-secret":"abc123","user":"Tom Cruise","ip-address":"1.1.1.1","machine":"Toms_Host","machine-os":"Microsoft Windows 7 Enterprise Edition","host-type":"Windows 7","identity-source":"ARUBA ClearPass Policy Manager","session-timeout":555,"user-groups":["aruba-guest-group"],"machine-groups":["aruba-guest-machine"],"roles":[],"fetch-user-groups":0,"fetch-machine-groups":0}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The gap comes with any existing sessions/connections, they do not get closed ie: remain open.&lt;/P&gt;&lt;P&gt;New ones are blocked. What we came up with is to use a web api post to run-script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;From the link it looks simple enough. &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://sc1.checkpoint.com/documents/latest/APIs/index.html#web/run-script~v1.1" rel="nofollow"&gt;https://sc1.checkpoint.com/documents/latest/APIs/index.html#web/run-script~v1.1&lt;/A&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #0a508b; background: white;"&gt;&lt;SPAN&gt;POST &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://" rel="nofollow"&gt;https://&lt;/A&gt;&lt;SPAN&gt;&amp;lt;mgmt-server&amp;gt;:&amp;lt;port&amp;gt;/web_api/run-script&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 7.5pt; background: #EFEFEF;"&gt;&lt;SPAN style="font-size: 10.0pt; color: #191919;"&gt;POST {{server}}/run-script&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 7.5pt; background: #EFEFEF;"&gt;&lt;SPAN style="font-size: 10.0pt; color: #191919;"&gt;Content-Type: application/json&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 7.5pt; background: #EFEFEF;"&gt;&lt;SPAN style="font-size: 10.0pt; color: #191919;"&gt;X-chkp-sid: {{session}}&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 7.5pt; background: #EFEFEF;"&gt;&lt;SPAN style="font-size: 10.0pt; color: #191919;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 7.5pt; background: #EFEFEF;"&gt;&lt;SPAN style="font-size: 10.0pt; color: #191919;"&gt;&amp;nbsp; "script-name" : "Script Example: List files under / dir",&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 7.5pt; background: #EFEFEF;"&gt;&lt;SPAN style="font-size: 10.0pt; color: #191919;"&gt;&amp;nbsp; "script" : "ls -l /",&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 7.5pt; background: #EFEFEF;"&gt;&lt;SPAN style="font-size: 10.0pt; color: #191919;"&gt;&amp;nbsp; "targets" : [ "corporate-gateway" ]&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 7.5pt; background: #EFEFEF;"&gt;&lt;SPAN style="font-size: 10.0pt; color: #191919;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So theoretically it looks possible… I would ideally like to send the same src as what is in the post above… ie: "ip-address":"%{Connection:Client-IP-Address}" &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;fw sam -v -t 60 -J src x.x.x.x&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So far, no matter what I try I always get:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;html&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;title&amp;gt;404 Not Found&amp;lt;/title&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h1&amp;gt;Not Found&amp;lt;/h1&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;p&amp;gt;The requested URL /run-script was not found on this server.&amp;lt;/p&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In a video this was mentioned at around 35:00, but I cannot seem to find the corresponding code.&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-video-small" data-containerid="2052" data-containertype="14" data-objectid="5537" data-objecttype="1100" href="https://community.checkpoint.com/videos/5537"&gt;https://community.checkpoint.com/videos/5537&lt;/A&gt;&lt;/P&gt;&lt;P&gt;How to use R80.10 API for Automation and Streamlined Security (Video)&lt;/P&gt;&lt;P&gt;SAM block commands&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All along, I have been trying to do this on the gateways… Cluster VIP. In reviewing. It looks like maybe I need to do this on the management server ip. If I do this. Wouldn’t I need to publish?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I run this on the management server:&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;html&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;title&amp;gt;403 Forbidden&amp;lt;/title&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h1&amp;gt;Forbidden&amp;lt;/h1&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;p&amp;gt;You don't have permission to access /web_api/run-script&lt;/P&gt;&lt;P&gt;on this server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/p&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anybody have an idea to help close this gap?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2018 16:42:51 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/how-to-use-the-web-api-to-run-the-run-script/m-p/23590#M1452</guid>
      <dc:creator>Chris_Williams2</dc:creator>
      <dc:date>2018-01-18T16:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: how to use the web api to run the run-script</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/how-to-use-the-web-api-to-run-the-run-script/m-p/23591#M1453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First of all, in your example, it looks like you're posting to &lt;A href="https://management-ip/run-script"&gt;https://management-ip/run-script&lt;/A&gt;&amp;nbsp;which is not correct (and would explain the 404 error).&lt;/P&gt;&lt;P&gt;And yes, you would need to do this through the management IP (not the individual gateways) to the individual gateways.&lt;/P&gt;&lt;P&gt;Now what I'm not sure about is if you have to specify the individual gateways or if you can just do it to the cluster object.&lt;/P&gt;&lt;P&gt;Since you're not modifying a rulebase or an object, this action should not require a publish.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2018 16:52:04 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/how-to-use-the-web-api-to-run-the-run-script/m-p/23591#M1453</guid>
      <dc:creator>PhoneBoy</dc:creator>
      <dc:date>2018-01-18T16:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: how to use the web api to run the run-script</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/how-to-use-the-web-api-to-run-the-run-script/m-p/23592#M1454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For some reason your "reply" got stuck and I can't get it out of the moderation queue.&lt;/P&gt;&lt;P&gt;All API calls require you to be authenticated first with a user that is allowed to use the Web API.&lt;/P&gt;&lt;P&gt;The authentication process will return a session ID, that is passed to future calls you make.&lt;/P&gt;&lt;P&gt;That explains the 403 error above.&lt;/P&gt;&lt;P&gt;To release that session (recommended), you would need to log out after you're done executing commands.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2018 23:08:26 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/how-to-use-the-web-api-to-run-the-run-script/m-p/23592#M1454</guid>
      <dc:creator>PhoneBoy</dc:creator>
      <dc:date>2018-01-18T23:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: how to use the web api to run the run-script</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/how-to-use-the-web-api-to-run-the-run-script/m-p/23593#M1455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So... I have managed to make it all work.&lt;/P&gt;&lt;P&gt;I’ve got it all working in postman…&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;POST //web_api/login HTTP/1.1&lt;BR /&gt;Host: 192.168.1.1&lt;BR /&gt;Content-Type: application/json&lt;/P&gt;&lt;P&gt;{&lt;BR /&gt; "user" : "adm",&lt;BR /&gt; "password" : "loveCP"&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;How do I capture the sid to use in the below example?&lt;BR /&gt;This works, but I am not sure where to put it…&lt;/P&gt;&lt;P&gt;try {&lt;BR /&gt; var sid = JSON.parse(responseBody).sid;&lt;BR /&gt; postman.setEnvironmentVariable("session", sid);&lt;BR /&gt; tests["login session-id = " + sid] = true;&lt;BR /&gt;} catch (e) {}&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;POST //web_api/run-script HTTP/1.1&lt;BR /&gt;Host: 192.168.1.1&lt;BR /&gt;Content-Type: application/json&lt;BR /&gt;X-chkp-sid: P8VtDKPobdRGq12QU4BDnPdzUadoem7mZ7TQgV6d1Y4&lt;/P&gt;&lt;P&gt;{&lt;BR /&gt; "script-name" : "CW Test fw sam",&lt;BR /&gt; "script" : "fw sam -v -t 60 -J src 10.10.10.1", &lt;BR /&gt; "targets" : [ "Enforcer" ]&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anybody have an idea to help close this gap in capturing the sid? Again the above works... but I am not sure how to stack the login, run-script, logoff. I am still figuring this all out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2018 20:57:08 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/how-to-use-the-web-api-to-run-the-run-script/m-p/23593#M1455</guid>
      <dc:creator>Chris_Williams2</dc:creator>
      <dc:date>2018-01-22T20:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to use the web api to run the run-script</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/how-to-use-the-web-api-to-run-the-run-script/m-p/23594#M1456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Chris, you seem to be having way more luck with Aruba Clear Pass API integration than we are. We can't get the Aruba Clear Pass server to reliably send API POSTs to the firewall.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any special sauce on the Aruba or Check Point side you wouldn't mind sharing?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2018 13:44:00 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/how-to-use-the-web-api-to-run-the-run-script/m-p/23594#M1456</guid>
      <dc:creator>Jason_Carrillo</dc:creator>
      <dc:date>2018-04-27T13:44:00Z</dc:date>
    </item>
    <item>
      <title>Re: how to use the web api to run the run-script</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/how-to-use-the-web-api-to-run-the-run-script/m-p/23595#M1457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm working on something very similar to this.&amp;nbsp; I want to use automatic reactions in SmartEvent to put in FW SAM blocks.&amp;nbsp; We did this pre-R80, where SE could be connected at the domain level and fw sam was run on SE itself.&amp;nbsp; Now that SE has to be global R80+, the ease of functionality disappeared (I can no longer to FW SAM on SE with MDS)...&amp;nbsp; I was able to use the API to authenticate to domain level to do a run-script, but I can't figure out how to log into the MDS level and do a run script on my MDS server.&amp;nbsp; For my target, I tried my MDS server name as it appears in SmartConsole.&amp;nbsp; I also tried using the names of the CMAs on the MDS I was authenticated to...&amp;nbsp; each time i get the same error:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;{&lt;BR /&gt; "code" : "generic_err_object_not_found",&lt;BR /&gt; "message" : "Requested object [cpmdsserver.company.com] not found"&lt;BR /&gt;}&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to use run-script at the MDS level?&amp;nbsp; I just want to log into my MDS and run a script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Chris - If you using bash, one way you can store your SID like this:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&lt;SPAN&gt;MYSID=`curl_cli -k -X POST "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://$MYCPMGMTSERVER/web_api/login" rel="nofollow"&gt;https://$MYCPMGMTSERVER/web_api/login&lt;/A&gt;&lt;SPAN&gt;" -H "Content-Type: application/json" -d "{\"user\":\"$MYUSER\",\"password\":\"$MYPASS\",\"domain\":\"$MYDOMAIN\",\"session-name\":\"My Fun Session\",\"session-timeout\":\"3600\"}" -s | grep sid | awk -F'"' '{print $4}'`&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Once you have the SID, you can just pass it to&amp;nbsp;&lt;SPAN style="color: #333333; background-color: #ffffff;"&gt;X-chkp-sid like this:&lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;SPAN&gt;"X-chkp-sid:&amp;nbsp;$MYSID"&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Dec 2018 06:33:54 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/how-to-use-the-web-api-to-run-the-run-script/m-p/23595#M1457</guid>
      <dc:creator>Brian_Deutmeyer</dc:creator>
      <dc:date>2018-12-08T06:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to use the web api to run the run-script</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/how-to-use-the-web-api-to-run-the-run-script/m-p/23596#M1458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From what I can tell, the target for that API call must be a &lt;EM&gt;&lt;STRONG&gt;gateway&lt;/STRONG&gt;&lt;/EM&gt; not the management server itself (at least that's what my testing suggests).&lt;/P&gt;&lt;P&gt;However, we just released a new Gaia OS API that should also work on a management server: &lt;A href="https://community.checkpoint.com/community/infinity-general/appliances-and-gaia/blog/2018/12/06/new-gaia-features-security-gateway-rest-api-and-dynamic-clish?sr=search&amp;amp;searchId=9da6d409-2993-43c5-aee4-e5e6fb379620&amp;amp;searchIndex=0"&gt;https://community.checkpoint.com/community/infinity-general/appliances-and-gaia/blog/2018/12/06/new-gaia-features-security-gateway-rest-api-and-dynamic-clish?sr=search&amp;amp;searchId=9da6d409-2993-43c5-aee4-e5e6fb379620&amp;amp;searchIndex=0&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Dec 2018 14:04:59 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/how-to-use-the-web-api-to-run-the-run-script/m-p/23596#M1458</guid>
      <dc:creator>PhoneBoy</dc:creator>
      <dc:date>2018-12-08T14:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to use the web api to run the run-script</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/how-to-use-the-web-api-to-run-the-run-script/m-p/23597#M1459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The SG REST API sounds interesting, especially if it works on the management server...&amp;nbsp; I'll look into that.&amp;nbsp; Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2018 19:00:10 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/how-to-use-the-web-api-to-run-the-run-script/m-p/23597#M1459</guid>
      <dc:creator>Brian_Deutmeyer</dc:creator>
      <dc:date>2018-12-10T19:00:10Z</dc:date>
    </item>
  </channel>
</rss>

