<?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 query API for recommended software release for a specific device? in Services Discussions</title>
    <link>https://community.cisco.com/t5/services-discussions/how-to-query-api-for-recommended-software-release-for-a-specific/m-p/3904367#M565</link>
    <description>&lt;P&gt;Hi &amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks a lot. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you elaborate on how partners get access ? (in the case it´s a gold partner)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have not been able to see how they get access ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;best regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tue&lt;/P&gt;</description>
    <pubDate>Wed, 07 Aug 2019 07:19:20 GMT</pubDate>
    <dc:creator>tuenoerg</dc:creator>
    <dc:date>2019-08-07T07:19:20Z</dc:date>
    <item>
      <title>How to query API for recommended software release for a specific device?</title>
      <link>https://community.cisco.com/t5/services-discussions/how-to-query-api-for-recommended-software-release-for-a-specific/m-p/3903627#M562</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We are trying to query the support API for recommended software for a specific device.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Being a bit new to this - I´m looking for all the assistance we can get.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We are in need of which API´s to query, and so far it seems we need to do :&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;Query sn2info API with the device serial number to get the PID&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;With correct PID from previous step, request the suggested software&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;And how do we get access to query the API ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;best regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tue&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2019 08:41:41 GMT</pubDate>
      <guid>https://community.cisco.com/t5/services-discussions/how-to-query-api-for-recommended-software-release-for-a-specific/m-p/3903627#M562</guid>
      <dc:creator>tuenoerg</dc:creator>
      <dc:date>2019-08-06T08:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to query API for recommended software release for a specific device?</title>
      <link>https://community.cisco.com/t5/services-discussions/how-to-query-api-for-recommended-software-release-for-a-specific/m-p/3904347#M563</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;Customers with Smart Net Total Care (SNTC) and Partners (PSS) can access the support API.&lt;/P&gt;&lt;P&gt;You are right with the approach, get PID with serial number and then get suggested software with the PID.&lt;/P&gt;&lt;P&gt;&lt;A href="https://developer.cisco.com/docs/support-apis/#!product-information/get-product-information-by-serial-numbers" target="_self"&gt;Get PID&lt;/A&gt;&lt;/P&gt;&lt;PRE&gt;Sample Response
{
    "pagination_response_record": {
        "title": "Product Info API - Get Product Information by Serial Number(s)",
        "page_index": 1,
        "last_index": 1,
        "total_records": 2
        "page_records": 2,
        "self_link": "https://api.cisco.com/product/v1/information/serial_numbers/SPE181700LN,REF_CSJ07306405?page_index=1",
    },
    "product_list": [{
        "id": "1",
        "sr_no": "SPE181700LN",
        "base_pid": "UBR10012",
        "orderable_pid": "UBR10012",
...&lt;/PRE&gt;&lt;P&gt;&lt;A href="https://developer.cisco.com/docs/support-apis/#!software-suggestion/get-compatible-and-suggested-software-releases-by-product-id" target="_self"&gt;GET Compatible and Suggested Software Releases by Product ID&lt;/A&gt;&lt;/P&gt;&lt;PRE&gt;Sample Response
{
   "paginationResponseRecord": {
      "pageIndex": "1",
      "lastIndex": "1",
      "totalRecords": "1",
      "pageRecords": "1",
      "selfLink": "https://api.cisco.com/software/suggestion/v2/suggestions/compatible/productId/ASR1013",
      "title": "Software Suggestions"
   },
   "suggestions": [{
      "id": "1",
      "isSuggested": "N",
      "basePID": "ASR1013",
      "mdfId": "283795847",
      "productName": "ASR 1013 Router",
      "softwareType": "IOS XE Software",
      "releaseFormat1": "16.1.1",
      "releaseFormat2": "16.1.1",
      "releaseDate": "02 Feb 2014",
      "majorRelease": "16",
      "releaseTrain": "16.1",
      "releaseLifeCycle": "ED",
...&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2019 06:44:56 GMT</pubDate>
      <guid>https://community.cisco.com/t5/services-discussions/how-to-query-api-for-recommended-software-release-for-a-specific/m-p/3904347#M563</guid>
      <dc:creator>omz</dc:creator>
      <dc:date>2019-08-07T06:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to query API for recommended software release for a specific device?</title>
      <link>https://community.cisco.com/t5/services-discussions/how-to-query-api-for-recommended-software-release-for-a-specific/m-p/3904367#M565</link>
      <description>&lt;P&gt;Hi &amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks a lot. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you elaborate on how partners get access ? (in the case it´s a gold partner)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have not been able to see how they get access ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;best regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tue&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2019 07:19:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/services-discussions/how-to-query-api-for-recommended-software-release-for-a-specific/m-p/3904367#M565</guid>
      <dc:creator>tuenoerg</dc:creator>
      <dc:date>2019-08-07T07:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to query API for recommended software release for a specific device?</title>
      <link>https://community.cisco.com/t5/services-discussions/how-to-query-api-for-recommended-software-release-for-a-specific/m-p/3904383#M566</link>
      <description>&lt;P&gt;&lt;A href="https://developer.cisco.com/docs/support-apis/#!getting-started-with-cisco-support-apis-for-pss/overview" target="_blank"&gt;https://developer.cisco.com/docs/support-apis/#!getting-started-with-cisco-support-apis-for-pss/overview&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.cisco.com/t5/partner-support-service/ct-p/5456-partner-support-service" target="_blank"&gt;https://community.cisco.com/t5/partner-support-service/ct-p/5456-partner-support-service&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Click &amp;gt; Request access to PSS APIs and the API Console&lt;/P&gt;&lt;P&gt;Send email to TAC.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please don't forget to rate helpful posts &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2019 07:38:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/services-discussions/how-to-query-api-for-recommended-software-release-for-a-specific/m-p/3904383#M566</guid>
      <dc:creator>omz</dc:creator>
      <dc:date>2019-08-07T07:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to query API for recommended software release for a specific device?</title>
      <link>https://community.cisco.com/t5/services-discussions/how-to-query-api-for-recommended-software-release-for-a-specific/m-p/3904397#M567</link>
      <description>&lt;P&gt;Hi all....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've done everything thinkable, including sending the email from the link "&lt;SPAN&gt;Request access to PSS APIs and the API Console"&lt;/SPAN&gt;, AND got the reply, saying, that I should be able to access the Support API.&lt;/P&gt;&lt;P&gt;However, I'm unable to find the site, where I can attach the support API to my account, and then get the API key.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ANY help would be grately appreciated!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2019 08:04:45 GMT</pubDate>
      <guid>https://community.cisco.com/t5/services-discussions/how-to-query-api-for-recommended-software-release-for-a-specific/m-p/3904397#M567</guid>
      <dc:creator>Gandalf_G</dc:creator>
      <dc:date>2019-08-07T08:04:45Z</dc:date>
    </item>
  </channel>
</rss>

