<?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 Incident in XSOAR from 1 environment to another XSOAR in another environment in General Topics</title>
    <link>https://live.paloaltonetworks.com/t5/general-topics/exporting-incident-in-xsoar-from-1-environment-to-another-xsoar/m-p/1233520#M124719</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/189408"&gt;@Mudhireddy&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Forgot to mention i have an environment that is Airgapped, probably unable to use the REST API to do so, do i export the json file and import it in? Thinking if the playbook is able to do that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 08 Jul 2025 08:01:58 GMT</pubDate>
    <dc:creator>AlanHan</dc:creator>
    <dc:date>2025-07-08T08:01:58Z</dc:date>
    <item>
      <title>Exporting Incident in XSOAR from 1 environment to another XSOAR in another environment</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/exporting-incident-in-xsoar-from-1-environment-to-another-xsoar/m-p/1233413#M124715</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a use case where i need to import the incident file from one XSOAR to another XSOAR, in different environments, using&amp;nbsp;&lt;STRONG&gt;PLAYBOOKS.&amp;nbsp;&lt;/STRONG&gt;Is there anyone who can advise if this is possible, and if so what are the steps needed?&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jul 2025 08:29:27 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/exporting-incident-in-xsoar-from-1-environment-to-another-xsoar/m-p/1233413#M124715</guid>
      <dc:creator>AlanHan</dc:creator>
      <dc:date>2025-07-07T08:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting Incident in XSOAR from 1 environment to another XSOAR in another environment</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/exporting-incident-in-xsoar-from-1-environment-to-another-xsoar/m-p/1233422#M124716</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Goal:&lt;/STRONG&gt; Get an incident from XSOAR A (Source) into XSOAR B (Destination) via playbooks.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Core Idea:&lt;/STRONG&gt; XSOAR A's playbook fetches incident data, then uses XSOAR A's "Cortex XSOAR REST API" integration (pointing to XSOAR B) to create a new incident in XSOAR B.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Steps:&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL start="1"&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;API Key Setup:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;Generate an API Key in &lt;STRONG&gt;XSOAR B&lt;/STRONG&gt; (Destination).&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;In &lt;STRONG&gt;XSOAR A&lt;/STRONG&gt; (Source), create an "Cortex XSOAR REST API" integration instance.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Configure this instance with &lt;STRONG&gt;XSOAR B's URL&lt;/STRONG&gt; and the &lt;STRONG&gt;API Key&lt;/STRONG&gt; generated from XSOAR B. Test connectivity.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Source XSOAR Playbook (Export/Send):&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Trigger:&lt;/STRONG&gt; Start this playbook on the incident you want to transfer.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Get Incident Data:&lt;/STRONG&gt; Use &lt;CODE&gt;getIncident&lt;/CODE&gt; to pull all incident details (name, type, severity, custom fields, etc.). Store this in context.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Prepare JSON:&lt;/STRONG&gt; Format the collected incident data into a JSON object, mapping fields correctly (e.g., custom fields are lowercase, no spaces).&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Send via API:&lt;/STRONG&gt; Use the &lt;CODE&gt;core-api-post&lt;/CODE&gt; command from the "Cortex XSOAR REST API" integration instance (configured for XSOAR B).&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;&lt;CODE&gt;uri&lt;/CODE&gt;: &lt;CODE&gt;/incident&lt;/CODE&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;CODE&gt;body&lt;/CODE&gt;: The JSON object of your incident data.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Destination XSOAR (Receives &amp;amp; Processes):&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;The &lt;CODE&gt;core-api-post&lt;/CODE&gt; call from Source XSOAR will automatically &lt;STRONG&gt;create a new incident&lt;/STRONG&gt; in Destination XSOAR.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Optional Playbook (Post-Creation):&lt;/STRONG&gt; If needed, create a playbook in Destination XSOAR that triggers on this newly created incident type. This playbook can:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;Map incoming data to specific local custom fields if names differ.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Handle attachments (if you encoded and sent them).&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Trigger further local investigation steps.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;STRONG&gt;Key Tools:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Cortex XSOAR REST API integration:&lt;/STRONG&gt; For inter-XSOAR communication.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;CODE&gt;getIncident&lt;/CODE&gt; command:&lt;/STRONG&gt; To retrieve incident data in the source.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;CODE&gt;core-api-post&lt;/CODE&gt; command:&lt;/STRONG&gt; To send data and create the incident in the destination.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Brief Considerations:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Permissions:&lt;/STRONG&gt; API keys need &lt;CODE&gt;Incidents&lt;/CODE&gt; (Read, Create, Edit) permissions.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Field Mapping:&lt;/STRONG&gt; Ensure consistent field names or transform them in the playbook.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Deduplication:&lt;/STRONG&gt; For repeated transfers, include a unique ID from the source to prevent duplicates in the destination.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Attachments:&lt;/STRONG&gt; Require special handling (download, encode, send, decode, attach).&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Mon, 07 Jul 2025 10:54:12 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/exporting-incident-in-xsoar-from-1-environment-to-another-xsoar/m-p/1233422#M124716</guid>
      <dc:creator>Mudhireddy</dc:creator>
      <dc:date>2025-07-07T10:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting Incident in XSOAR from 1 environment to another XSOAR in another environment</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/exporting-incident-in-xsoar-from-1-environment-to-another-xsoar/m-p/1233520#M124719</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/189408"&gt;@Mudhireddy&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Forgot to mention i have an environment that is Airgapped, probably unable to use the REST API to do so, do i export the json file and import it in? Thinking if the playbook is able to do that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jul 2025 08:01:58 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/exporting-incident-in-xsoar-from-1-environment-to-another-xsoar/m-p/1233520#M124719</guid>
      <dc:creator>AlanHan</dc:creator>
      <dc:date>2025-07-08T08:01:58Z</dc:date>
    </item>
  </channel>
</rss>

