<?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: Exporting and Importing response plans in Splunk Dev</title>
    <link>https://community.splunk.com/t5/Splunk-Dev/Exporting-and-Importing-response-plans/m-p/760490#M12125</link>
    <description>&lt;P&gt;I asked about this on Slack some time ago.&lt;/P&gt;&lt;P&gt;Supposedly you can do&lt;/P&gt;&lt;PRE&gt;curl -d '&amp;lt;templateJSON&amp;gt;' -k -u "user:pw" -H "Content-Type: application/json" -X POST https://&amp;lt;ES&amp;gt;:8089/servicesNS/nobody/missioncontrol/v1/responsetemplates&lt;/PRE&gt;&lt;P&gt;But also 8.4 is supposed to have the export/import feature built-in.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 27 Apr 2026 08:35:07 GMT</pubDate>
    <dc:creator>PickleRick</dc:creator>
    <dc:date>2026-04-27T08:35:07Z</dc:date>
    <item>
      <title>Exporting and Importing response plans</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Exporting-and-Importing-response-plans/m-p/760484#M12124</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;I was wondering if there is a way to import/export response plans and investigations in splunk8.x,&lt;BR /&gt;my goal is to include Response Plans in a custom app that we have built and are deploying across multiple projects&lt;BR /&gt;from what I have gathered so far this may not be possible because these features are specific to Splunk Enterprise Security, If that is the case is there a clean or standard way to move Response Plans and Investigations between environments?&lt;BR /&gt;also Im not sure if I posted this question in the right location, please let me know if it would be better suited elsewhere&lt;BR /&gt;thank you so much&lt;/P&gt;</description>
      <pubDate>Mon, 27 Apr 2026 04:15:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Exporting-and-Importing-response-plans/m-p/760484#M12124</guid>
      <dc:creator>Elina</dc:creator>
      <dc:date>2026-04-27T04:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting and Importing response plans</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Exporting-and-Importing-response-plans/m-p/760490#M12125</link>
      <description>&lt;P&gt;I asked about this on Slack some time ago.&lt;/P&gt;&lt;P&gt;Supposedly you can do&lt;/P&gt;&lt;PRE&gt;curl -d '&amp;lt;templateJSON&amp;gt;' -k -u "user:pw" -H "Content-Type: application/json" -X POST https://&amp;lt;ES&amp;gt;:8089/servicesNS/nobody/missioncontrol/v1/responsetemplates&lt;/PRE&gt;&lt;P&gt;But also 8.4 is supposed to have the export/import feature built-in.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Apr 2026 08:35:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Exporting-and-Importing-response-plans/m-p/760490#M12125</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2026-04-27T08:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting and Importing response plans</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Exporting-and-Importing-response-plans/m-p/760496#M12126</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/316845"&gt;@Elina&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/231884"&gt;@PickleRick&lt;/a&gt;&amp;nbsp;mentioned, this is now available for &amp;gt;= ES 8.4&lt;/P&gt;&lt;P&gt;Check out the docs at&amp;nbsp;&lt;A href="https://help.splunk.com/en/splunk-enterprise-security-8/api-reference/8.4/splunk-enterprise-security-api-reference/responsetemplate/public_v2_import_responsetemplate" target="_blank"&gt;https://help.splunk.com/en/splunk-enterprise-security-8/api-reference/8.4/splunk-enterprise-security-api-reference/responsetemplate/public_v2_import_responsetemplate&lt;/A&gt;&amp;nbsp;(Import) and&amp;nbsp;&lt;A href="https://help.splunk.com/en/splunk-enterprise-security-8/api-reference/8.4/splunk-enterprise-security-api-reference/responsetemplate/public_v2_download_responsetemplate" target="_blank"&gt;https://help.splunk.com/en/splunk-enterprise-security-8/api-reference/8.4/splunk-enterprise-security-api-reference/responsetemplate/public_v2_download_responsetemplate &lt;/A&gt;(Export)&lt;/P&gt;&lt;P&gt;but essentially its something like:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Export/Download:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;curl --request GET \
  --url http://yoursplunkserver:8089/servicesNS/nobody/missioncontrol/public/v2/responsetemplates/YourTemplateID/download \
  --header 'Accept: application/octet-stream, application/json' \
  --header 'Authorization: Bearer yourSplunkToken'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Import:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;curl --request POST \
  --url https://yoursplunkserver:8089/servicesNS/nobody/missioncontrol/public/v2/responsetemplates/import \
  --header 'Accept: application/octet-stream, application/json' \
  --header 'Authorization: Bearer yourSplunkToken' \
  --header 'Content-Type: application/json' \
  --data '{
  "files": [
    {
      "filename": "security_template.json",
      "data": "data&amp;amp;colon;application/json;base64,eyJuYW1lIjogIlNlY3VyaXR5In0=",
      "name": "My Custom Security Template"
    }
  ]
}'&lt;/LI-CODE&gt;&lt;P&gt;Where the data is a Base64 encoded JSON string containing the template.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
      <pubDate>Mon, 27 Apr 2026 09:48:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Exporting-and-Importing-response-plans/m-p/760496#M12126</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2026-04-27T09:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting and Importing response plans</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Exporting-and-Importing-response-plans/m-p/760535#M12127</link>
      <description>&lt;P&gt;thank you all so much, I'm going to try them when we upgrade, Thanks Again!&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2026 07:23:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Exporting-and-Importing-response-plans/m-p/760535#M12127</guid>
      <dc:creator>Elina</dc:creator>
      <dc:date>2026-04-29T07:23:21Z</dc:date>
    </item>
  </channel>
</rss>

