<?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: FirePower Rest API response for FTD cluster in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/firepower-rest-api-response-for-ftd-cluster/m-p/4302684#M1079082</link>
    <description>&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/926331"&gt;@meidanmeshulam&lt;/a&gt;&amp;nbsp; this is a sample api response which you get in api explorer against the requested api endpoint. I gave this output from my lab virtual FMC which is running version&amp;nbsp;&lt;SPAN&gt;6.6.1&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 07 Mar 2021 07:24:44 GMT</pubDate>
    <dc:creator>Madhuri Dewangan</dc:creator>
    <dc:date>2021-03-07T07:24:44Z</dc:date>
    <item>
      <title>FirePower Rest API response for FTD cluster</title>
      <link>https://community.cisco.com/t5/network-security/firepower-rest-api-response-for-ftd-cluster/m-p/4300495#M1078948</link>
      <description>&lt;P&gt;Hi all&lt;BR /&gt;&lt;BR /&gt;In my company, we're fetching data from CISCO FirePower FMC via Rest API.&lt;BR /&gt;Lets say this FMC is managing 2 FTDs working in cluster mode and I'm using these two API calls: "&lt;SPAN&gt;/api/fmc_config/v1/domain/{domainUUID}/deviceclusters/ftddevicecluster"&lt;BR /&gt;&lt;/SPAN&gt;"&lt;SPAN&gt;/api/fmc_config/v1/domain/{domainUUID}/deviceclusters/ftddevicecluster/{objectId}"&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;What does the response for these calls look like ?&lt;BR /&gt;Can anyone provide an example ?&lt;BR /&gt;&lt;BR /&gt;Many Thanks Champs !&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Mar 2021 07:10:37 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/firepower-rest-api-response-for-ftd-cluster/m-p/4300495#M1078948</guid>
      <dc:creator>meidanmeshulam</dc:creator>
      <dc:date>2021-03-03T07:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: FirePower Rest API response for FTD cluster</title>
      <link>https://community.cisco.com/t5/network-security/firepower-rest-api-response-for-ftd-cluster/m-p/4302164#M1079060</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The sample response for the all the available API endpoints is available at&amp;nbsp;&lt;A href="https://&amp;lt;FMC-IP&amp;gt;/api/api-explorer/" target="_blank"&gt;https://&amp;lt;FMC-IP&amp;gt;/api/api-explorer/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Sample Response (if the request return 200 as response code) will be :&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;/api/fmc_config/v1/domain/{domainUUID}/deviceclusters/ftddevicecluster"&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE class="example microlight"&gt;{
    "links": {
        "self": "/fmc_config/v1/domain/DomainUUID/deviceclusters/ftddevicecluster?offset=0&amp;amp;limit=1&amp;amp;expanded=true"
    },
    "items": [
        {
            "id": "&amp;lt;container_uuid&amp;gt;",
            "links": {
                "self": "/fmc_config/v1/domain/DomainUUID/deviceclusters/ftddevicecluster/&amp;lt;container_uuid&amp;gt;"
            },
            "name": "&amp;lt;cluster_name&amp;gt;"
        },
        {
            "id": "&amp;lt;container_uuid&amp;gt;",
            "links": {
                "self": "/fmc_config/v1/domain/DomainUUID/deviceclusters/ftddevicecluster/&amp;lt;container_uuid&amp;gt;"
            },
            "name": "&amp;lt;cluster_name&amp;gt;"
        },
        {
            "id": "&amp;lt;container_uuid&amp;gt;",
            "links": {
                "self": "/fmc_config/v1/domain/DomainUUID/deviceclusters/ftddevicecluster/&amp;lt;container_uuid&amp;gt;"
            },
            "name": "&amp;lt;cluster_name&amp;gt;"
        }
    ],
    "paging": {
        "offset": 0,
        "limit": 3,
        "count": 3,
        "pages": 1
    }
}&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;For&amp;nbsp;"/api/fmc_config/v1/domain/{domainUUID}/deviceclusters/ftddevicecluster/{objectId}"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class="example microlight"&gt;{
    "id": "35874370-9957-11e8-af35-2038dcb5d0fa",
    "type": "DeviceCluster",
    "links": {
        "self": "/fmc_config/v1/domain/DomainUUID/deviceclusters/ftddevicecluster?offset=0&amp;amp;limit=1&amp;amp;expanded=true"
    },
    "name": "&amp;lt;cluster_name&amp;gt;",
    "masterDevice": {
        "id": "&amp;lt;master_device_UUID&amp;gt;",
        "type": "Device",
        "keepLocalEvents": false
    },
    "slaveDevices": [
        {
            "id": "&amp;lt;slave1_device_UUID&amp;gt;",
            "type": "Device",
            "keepLocalEvents": false
        },
        {
            "id": "&amp;lt;slave2_device_UUID&amp;gt;",
            "type": "Device",
            "keepLocalEvents": false
        },
        {
            "id": "&amp;lt;slave3_device_UUID&amp;gt;",
            "type": "Device",
            "keepLocalEvents": false
        }
    ],
    "metadata": {
        "clusterDeviceGroup": {
            "id": "&amp;lt;device_group_id&amp;gt;",
            "type": "DeviceGroup",
            "name": "&amp;lt;device_group_name&amp;gt;"
        },
        "lastUser": {
            "name": "admin",
            "type": "User"
        },
        "domain": {
            "id": "&amp;lt;domain_uuid&amp;gt;",
            "type": "Domain"
        }
    }
}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 16:54:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/firepower-rest-api-response-for-ftd-cluster/m-p/4302164#M1079060</guid>
      <dc:creator>Madhuri Dewangan</dc:creator>
      <dc:date>2021-03-05T16:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: FirePower Rest API response for FTD cluster</title>
      <link>https://community.cisco.com/t5/network-security/firepower-rest-api-response-for-ftd-cluster/m-p/4302677#M1079080</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="user-badges-list"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/123694"&gt;@Madhuri Dewangan&lt;/a&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Cisco-Employee lia-component-message-view-widget-author-username"&gt;&lt;SPAN class=""&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Cisco-Employee lia-component-message-view-widget-author-username"&gt;&lt;SPAN class=""&gt;This is amazing : ]&lt;BR /&gt;Thanks champ&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Mar 2021 06:15:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/firepower-rest-api-response-for-ftd-cluster/m-p/4302677#M1079080</guid>
      <dc:creator>meidanmeshulam</dc:creator>
      <dc:date>2021-03-07T06:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: FirePower Rest API response for FTD cluster</title>
      <link>https://community.cisco.com/t5/network-security/firepower-rest-api-response-for-ftd-cluster/m-p/4302679#M1079081</link>
      <description>&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/123694"&gt;@Madhuri Dewangan&lt;/a&gt;&amp;nbsp;Can you tell me what chassis is this ? What FirePower version are we looking at ?&lt;BR /&gt;&lt;BR /&gt;Thanks !&lt;/P&gt;</description>
      <pubDate>Sun, 07 Mar 2021 06:43:16 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/firepower-rest-api-response-for-ftd-cluster/m-p/4302679#M1079081</guid>
      <dc:creator>meidanmeshulam</dc:creator>
      <dc:date>2021-03-07T06:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: FirePower Rest API response for FTD cluster</title>
      <link>https://community.cisco.com/t5/network-security/firepower-rest-api-response-for-ftd-cluster/m-p/4302684#M1079082</link>
      <description>&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/926331"&gt;@meidanmeshulam&lt;/a&gt;&amp;nbsp; this is a sample api response which you get in api explorer against the requested api endpoint. I gave this output from my lab virtual FMC which is running version&amp;nbsp;&lt;SPAN&gt;6.6.1&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Mar 2021 07:24:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/firepower-rest-api-response-for-ftd-cluster/m-p/4302684#M1079082</guid>
      <dc:creator>Madhuri Dewangan</dc:creator>
      <dc:date>2021-03-07T07:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: FirePower Rest API response for FTD cluster</title>
      <link>https://community.cisco.com/t5/network-security/firepower-rest-api-response-for-ftd-cluster/m-p/4308179#M1079346</link>
      <description>&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/123694"&gt;@Madhuri Dewangan&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I thought cluster is not supported for FTDv.&lt;BR /&gt;&lt;BR /&gt;You're saying that you have a lab with virtual devices and you have clustering capabilities ? can you please explain ?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Mar 2021 14:46:16 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/firepower-rest-api-response-for-ftd-cluster/m-p/4308179#M1079346</guid>
      <dc:creator>meidanmeshulam</dc:creator>
      <dc:date>2021-03-16T14:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: FirePower Rest API response for FTD cluster</title>
      <link>https://community.cisco.com/t5/network-security/firepower-rest-api-response-for-ftd-cluster/m-p/4308214#M1079347</link>
      <description>&lt;P&gt;Yes Cluster is not supported in Virtual FTD. Since the question was around how the response for the mentioned call will look like. I had shared the response format from api explorer, this is not an actual response.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Mar 2021 15:21:43 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/firepower-rest-api-response-for-ftd-cluster/m-p/4308214#M1079347</guid>
      <dc:creator>Madhuri Dewangan</dc:creator>
      <dc:date>2021-03-16T15:21:43Z</dc:date>
    </item>
  </channel>
</rss>

