Search for Content Using a Query

You can use this request to search for and return a paged list of nodes based on your query criteria.

/services/v2/node.json?q=[SearchTerm]

🚧

Permissions & Notes:

  • No permissions necessary.
  • The system requires the q parameter.
  • With the includeOnly parameter set to id and name (/services/v2/node.json?includeOnly=id,name) to the AnswerHub REST API.
  • We added this request in version 1.6.3.

You can use the following parameters in your search for content using a query request:

Paging*: page, pageSize
Search: q, type, lang
Projection: include, exclude, includeOnly
Other options**: wrap, v1

The system supports the following sorting criteria in a node query request (Not all sorting criteria currently work; only sort by date and sort by relevance work):

Criteria NameFieldOrderDescription
votesscore, extra.scoredescendingThis parameter sorts search results from the highest to the lowest vote count.
viewCountextra.viewCountdescendingThis parameter sorts search results from the highest to the lowest view count.
usedCountextra.usedCountdescendingThis parameter sorts search results from the highest to the lowest used count. (The used count is the number of actions performed on a specific node.)
reportCountextra.reportCountdescendingThis parameter sorts search results from the highest to the lowest report count. (The report count is the number of times a node has been reported.)
newestcreationDatedescendingThis parameter sorts search results from the most recently to the least recently created.
hottest(computed property)descendingThis parameter sorts search results from the most to least hot. (Hot is a computed property based on the Total number of answers (for questions) or comments (for ideas/articles) within a configurable number of days (default is 2; the admin can change this in Site > General > Navigation)
favoriteCountextra.favoriteCountdescendingThis parameter sorts search results from the highest to the lowest favorite count. (The favorite count is the number of times a user has made a node a favorite.)
defaultdescendingThe default sorting is the same as active.
commentCountextra.commentCountdescendingThis parameter sorts search results from the highest to the lowest comment count.
answerCountDescextra.answerCountdescendingThis parameter sorts search results from the highest to the lowest answer count.
answerCountextra.answerCountascendingThis parameter sorts search results from the lowest to the highest answer count.

Sample Requests

A GET search for content using a query request for "test" with results sorted by relevance sent to https://apidocs.cloud.answerhub.com using a human-readable Username/Password (answerhub/test123) would look like this:

📘

NOTE:

In the query search example above, the sort will default to sort=relevance. If you try to do a query search and a sort in the same request, the sort will automatically default to relevance. You should use the different query params in separate requests.

curl 
-u answerhub:test123 
-H "Accept: application/json" 
-H "Content-type: application/json" 
-X GET "https://apidocs.cloud.answerhub.com/services/v2/node.json?q=gps"
curl 
-u answerhub:test123 
-H "Accept: application/json" 
-H "Content-type: application/json" 
-X GET "https://apidocs.cloud.answerhub.com/services/v2/node.json?sort=viewCount"

👍

Use of pageSize and page:

Note, we used the parameter pageSize = 1 to decrease the length of the JSON Response shown below. Without this parameter, the response displays a full page worth of response. To change pages, simply add the page=[pageNumber] parameter in your query.

Sample Responses

Response for query search, q=gps"

{
    "name": "",
    "sort": "relevance",
    "page": 1,
    "pageSize": 15,
    "pageCount": 1,
    "listCount": 5,
    "totalCount": 6,
    "sorts": [
        "active",
        "newest",
        "hottest",
        "votes",
        "viewCount",
        "usedCount",
        "answerCount",
        "answerCountAsc",
        "commentCount",
        "favoriteCount",
        "followers",
        "reportCount"
    ],
    "list": [
        {
            "id": 128,
            "type": "question",
            "creationDate": 1545231744000,
            "creationDateFormatted": "12/19/2018 03:02 PM",
            "title": "Can the government track you if you have a GPS-enabled mobile phone?",
            "body": "",
            "bodyAsHTML": "",
            "author": {
                "id": 22,
                "username": "confused",
                "realname": "Confused User",
                "reputation": 0
            },
            "lastEditedAction": 153,
            "activeRevisionId": 128,
            "revisionIds": [
                128
            ],
            "lastActiveUserId": 22,
            "lastActiveDate": 1545231744000,
            "attachments": [],
            "childrenIds": [
                129
            ],
            "commentIds": [],
            "marked": false,
            "topics": [
                {
                    "id": 1,
                    "creationDate": 1545231736000,
                    "creationDateFormatted": "12/19/2018 03:02 PM",
                    "name": "science",
                    "author": {
                        "id": 22,
                        "username": "confused",
                        "realname": "Confused User",
                        "reputation": 0
                    },
                    "usedCount": 37,
                    "getImmediateChildren": [],
                    "getParents": []
                },
                {
                    "id": 126,
                    "creationDate": 1545231744000,
                    "creationDateFormatted": "12/19/2018 03:02 PM",
                    "name": "gps",
                    "author": {
                        "id": 22,
                        "username": "confused",
                        "realname": "Confused User",
                        "reputation": 0
                    },
                    "usedCount": 2,
                    "getImmediateChildren": [],
                    "getParents": []
                },
                {
                    "id": 127,
                    "creationDate": 1545231744000,
                    "creationDateFormatted": "12/19/2018 03:02 PM",
                    "name": "technology",
                    "author": {
                        "id": 22,
                        "username": "confused",
                        "realname": "Confused User",
                        "reputation": 0
                    },
                    "usedCount": 6,
                    "getImmediateChildren": [],
                    "getParents": []
                }
            ],
            "primaryContainerId": 8,
            "containerIds": [
                7,
                8
            ],
            "slug": "can-the-government-track-you-if-you-have-a-gps-ena",
            "wiki": false,
            "score": 0,
            "depth": 0,
            "viewCount": 0,
            "upVoteCount": 0,
            "downVoteCount": 0,
            "nodeStates": [],
            "answers": [
                129
            ],
            "answerCount": 1
        },
        {
            "id": 399,
            "type": "question",
            "creationDate": 1545231762000,
            "creationDateFormatted": "12/19/2018 03:02 PM",
            "title": "Can the government track you if you have a GPS-enabled mobile phone?",
            "body": "",
            "bodyAsHTML": "",
            "author": {
                "id": 22,
                "username": "confused",
                "realname": "Confused User",
                "reputation": 0
            },
            "lastEditedAction": 420,
            "activeRevisionId": 399,
            "revisionIds": [
                399
            ],
            "lastActiveUserId": 22,
            "lastActiveDate": 1545231762000,
            "attachments": [],
            "childrenIds": [
                400
            ],
            "commentIds": [],
            "marked": false,
            "topics": [
                {
                    "id": 1,
                    "creationDate": 1545231736000,
                    "creationDateFormatted": "12/19/2018 03:02 PM",
                    "name": "science",
                    "author": {
                        "id": 22,
                        "username": "confused",
                        "realname": "Confused User",
                        "reputation": 0
                    },
                    "usedCount": 37,
                    "getImmediateChildren": [],
                    "getParents": []
                },
                {
                    "id": 126,
                    "creationDate": 1545231744000,
                    "creationDateFormatted": "12/19/2018 03:02 PM",
                    "name": "gps",
                    "author": {
                        "id": 22,
                        "username": "confused",
                        "realname": "Confused User",
                        "reputation": 0
                    },
                    "usedCount": 2,
                    "getImmediateChildren": [],
                    "getParents": []
                },
                {
                    "id": 127,
                    "creationDate": 1545231744000,
                    "creationDateFormatted": "12/19/2018 03:02 PM",
                    "name": "technology",
                    "author": {
                        "id": 22,
                        "username": "confused",
                        "realname": "Confused User",
                        "reputation": 0
                    },
                    "usedCount": 6,
                    "getImmediateChildren": [],
                    "getParents": []
                }
            ],
            "primaryContainerId": 8,
            "containerIds": [
                7,
                8
            ],
            "slug": "can-the-government-track-you-if-you-have-a-gps-ena-1",
            "wiki": false,
            "score": 0,
            "depth": 0,
            "viewCount": 0,
            "upVoteCount": 0,
            "downVoteCount": 0,
            "nodeStates": [],
            "answers": [
                400
            ],
            "answerCount": 1
        },
        {
            "id": 617,
            "type": "kbentry",
            "creationDate": 1547066760000,
            "creationDateFormatted": "01/09/2019 08:46 PM",
            "title": "Simply Having APIs Is Not Enough",
            "body": "<div class=\"fr-view clearfix\"><div class=\"fr-view clearfix\"><p>For several years now, the conventional wisdom among both business and DevOps professionals has been that well-designed APIs are a key contributor to the delivery of successful digital projects.</p>\n<p>In fact, our <a rel=\"nofollow noopener noreferrer\" href=\"http://rewrite.ca.com/us/articles/digital-transformation/exploiting-the-software-advantage-lessons-from-digital-disrupter.html\" target=\"_blank\">study from 2015</a> showed that almost all ?digital disrupters? ? companies at the leading edge of innovation ? had leveraged APIs to achieve twice the revenue growth of their mainstream counterparts. Digging deeper, the research also showed that the best predictor of success is not just having APIs, but having them in the context of a properly managed and coordinated API program.</p>\n<p>APIs accelerate innovation, which in turn leads to the great digital experiences that make consumers and shareholders take notice.</p>\n<p>Mobile apps that give us a constant link to our vehicles, finances, and families; smart devices that monitor our homes and bodies; connected sensors that allow us to track anything in physical space ? these are the emerging use cases that are catapulting businesses into the realm of exponential growth.</p>\n<p>While APIs provide the connectivity that brings these experiences to life, recent events make it painfully clear that in the absence of proper governance and management, they also become a gateway to nightmare scenarios.</p>\n<h2><strong>What Happens Without API Management?</strong></h2>\n<p>One of the more <a rel=\"nofollow noopener noreferrer\" href=\"http://jalopnik.com/how-the-nissan-leaf-can-be-hacked-via-web-browser-from-1761044716\" target=\"_blank\">vivid examples</a> occurred just last month, when security researchers revealed that APIs used to connect the Nissan mobile app to Leaf electric vehicles were implemented without encryption or authentication.</p>\n<p>Anyone with the server address and a vehicle identification number (VIN) could not only intercept personal data including trip logs, but also activate cabin features, anonymously and from anywhere in the world. Primary functions such as throttle, brakes, and steering were not affected this time around, but as cars become ever more autonomous, it?s easy to imagine the safety implications of future vehicle API hacks.</p>\n<h2><strong>API Management Helps to Restore Control</strong></h2>\n<p>As the ?last mile? between mobile apps, IoT endpoints, and their backend services, APIs have rapidly become the new perimeter for today?s digital businesses. In turn, API governance and management have risen from being minor considerations to critical factors in both the design and delivery of digital experiences.</p>\n<p>Properly implemented, API management restores perimeter awareness, security, and control to enterprises, even as they are increasingly exposed to connected ?things? outside the firewall ? whether those things are phones, tablets, cars, baby monitors, webcams, GPS trackers, fitness monitors, or just about any other modern product.</p>\n<p>Of all the businesses in the world, digital disrupters from our survey have had the most experience with this kind of exposure, and it?s telling that they have concluded that proper management of APIs is critical for reducing its risks. Be one of those digital disrupters. Avoid being that Nissan guy.</p>\n<p>For more information about the 13 essential capabilities that API management can bring to your digital initiatives, download the free <a rel=\"nofollow noopener noreferrer\" href=\"https://www.ca.com/us/collateral/ebook/the-api-management-playbook.register.html\" target=\"_blank\">API Management Playbook</a>.</p></div></div>",
            "bodyAsHTML": "<div class=\"fr-view clearfix\">\n <div class=\"fr-view clearfix\">\n  <p>For several years now, the conventional wisdom among both business and DevOps professionals has been that well-designed APIs are a key contributor to the delivery of successful digital projects.</p> \n  <p>In fact, our <a rel=\"nofollow noopener noreferrer\" href=\"http://rewrite.ca.com/us/articles/digital-transformation/exploiting-the-software-advantage-lessons-from-digital-disrupter.html\" target=\"_blank\">study from 2015</a> showed that almost all ?digital disrupters? ? companies at the leading edge of innovation ? had leveraged APIs to achieve twice the revenue growth of their mainstream counterparts. Digging deeper, the research also showed that the best predictor of success is not just having APIs, but having them in the context of a properly managed and coordinated API program.</p> \n  <p>APIs accelerate innovation, which in turn leads to the great digital experiences that make consumers and shareholders take notice.</p> \n  <p>Mobile apps that give us a constant link to our vehicles, finances, and families; smart devices that monitor our homes and bodies; connected sensors that allow us to track anything in physical space ? these are the emerging use cases that are catapulting businesses into the realm of exponential growth.</p> \n  <p>While APIs provide the connectivity that brings these experiences to life, recent events make it painfully clear that in the absence of proper governance and management, they also become a gateway to nightmare scenarios.</p> \n  <h2><strong>What Happens Without API Management?</strong></h2> \n  <p>One of the more <a rel=\"nofollow noopener noreferrer\" href=\"http://jalopnik.com/how-the-nissan-leaf-can-be-hacked-via-web-browser-from-1761044716\" target=\"_blank\">vivid examples</a> occurred just last month, when security researchers revealed that APIs used to connect the Nissan mobile app to Leaf electric vehicles were implemented without encryption or authentication.</p> \n  <p>Anyone with the server address and a vehicle identification number (VIN) could not only intercept personal data including trip logs, but also activate cabin features, anonymously and from anywhere in the world. Primary functions such as throttle, brakes, and steering were not affected this time around, but as cars become ever more autonomous, it?s easy to imagine the safety implications of future vehicle API hacks.</p> \n  <h2><strong>API Management Helps to Restore Control</strong></h2> \n  <p>As the ?last mile? between mobile apps, IoT endpoints, and their backend services, APIs have rapidly become the new perimeter for today?s digital businesses. In turn, API governance and management have risen from being minor considerations to critical factors in both the design and delivery of digital experiences.</p> \n  <p>Properly implemented, API management restores perimeter awareness, security, and control to enterprises, even as they are increasingly exposed to connected ?things? outside the firewall ? whether those things are phones, tablets, cars, baby monitors, webcams, GPS trackers, fitness monitors, or just about any other modern product.</p> \n  <p>Of all the businesses in the world, digital disrupters from our survey have had the most experience with this kind of exposure, and it?s telling that they have concluded that proper management of APIs is critical for reducing its risks. Be one of those digital disrupters. Avoid being that Nissan guy.</p> \n  <p>For more information about the 13 essential capabilities that API management can bring to your digital initiatives, download the free <a rel=\"nofollow noopener noreferrer\" href=\"https://www.ca.com/us/collateral/ebook/the-api-management-playbook.register.html\" target=\"_blank\">API Management Playbook</a>.</p>\n </div>\n</div>",
            "author": {
                "id": 47,
                "username": "David.Chiu",
                "reputation": 0
            },
            "lastEditedAction": 686,
            "activeRevisionId": 617,
            "revisionIds": [
                617
            ],
            "lastActiveUserId": 47,
            "lastActiveDate": 1547066760000,
            "originalParentId": 617,
            "attachments": [],
            "childrenIds": [],
            "commentIds": [],
            "marked": false,
            "topics": [
                {
                    "id": 616,
                    "creationDate": 1547066760000,
                    "creationDateFormatted": "01/09/2019 08:46 PM",
                    "name": "innovation",
                    "author": {
                        "id": 47,
                        "username": "David.Chiu",
                        "reputation": 0
                    },
                    "usedCount": 1,
                    "getImmediateChildren": [],
                    "getParents": []
                }
            ],
            "primaryContainerId": 8,
            "containerIds": [
                7,
                8
            ],
            "slug": "simply-having-apis-is-not-enough",
            "wiki": false,
            "score": 0,
            "depth": 0,
            "viewCount": 0,
            "upVoteCount": 0,
            "downVoteCount": 0,
            "nodeStates": []
        },
        {
            "id": 635,
            "type": "kbentry",
            "creationDate": 1547066767000,
            "creationDateFormatted": "01/09/2019 08:46 PM",
            "title": "Testing the Internet of Everything",
            "body": "<div class=\"fr-view clearfix\"><div class=\"fr-view clearfix\"><p>The so-called Internet of Things (IoT) or Internet of Everything (IoE) is one of the fastest growing trends in technology, with Gartner having forecast <a rel=\"nofollow noopener noreferrer\" href=\"http://www.gartner.com/newsroom/id/3165317\" target=\"_blank\">6.4 billion connected ?things? in use in 2016</a>. It will be accompanied by fresh challenges as well as opportunities, and this is especially true when it comes to testing the connected devices and their software.</p>\n<h2>The Additional Complexity of the Internet of Things</h2>\n<p>A new article written for CA by Paul Gerrard, Principal, Gerrard Consulting, considers ?<a rel=\"nofollow noopener noreferrer\" href=\"https://www.ca.com/us/collateral/white-papers/how-will-the-internet-of-things-affect-testers.register.html\" target=\"_blank\">How will the Internet of Things Affect Testers?</a>? The potential risks of failure Paul identifies include the complexity of ?interactions between devices? which ?may be unpredicted, unforeseen and unknown?.</p>\n<p>This is not a new challenge for testers who are often faced with more possible combinations than can reasonably be tested, while many of these combinations can be unknown. In both API testing and the IoT, for instance, testers are faced with numerous discrete units of work, each of which can be combined in different ways.</p>\n<p>Some of these APIs might have been created by a third party, while the possible ordering and combinations of different versions of APIs can cause the number of combinations which might be tested to skyrocket to an impossible number.</p>\n<p>The ability to ?? identify the hundreds, thousands or millions of tests? needed to rigorously test the interconnected devices will therefore be necessary when testing the IoT, as it is already in API testing. This will require the ability to systematically reducing the number of tests to a realistic number without compromising quality and Paul, like CA, advocates a <a rel=\"nofollow noopener noreferrer\" href=\"https://www.ca.com/us/collateral/white-papers/models-at-heart.register.html\" target=\"_blank\">Model-Based approach</a> to achieve this.</p>\n<h2>Some New Tools and Technology Will Be Needed, Some Might Already Exist</h2>\n<p>There are features particular to the IoT which might make it particularly complex, however. Among other factors, Paul identifies the lower level hardware devices often involved, as well as the fact that the user base might be millions of mobile individuals, with objects moving across networks and certain devices carrying their own network.</p>\n<p>When considering how to perform functional testing in the face of such complexity, Paul suggests numerous requirements. Testers will need to be able to simulate ?thousands or millions of devices?, as well as having ?data that is fit for purpose?. The latter will involve the ability to generate and edit data, as well as to monitor and track its usage.</p>\n<p>On the surface, these requirements are similar to the current need of testers to have constant access to realistic test data and production-like systems. Along with effective test case design, having the right data and environments form three pillars of rigorous testing at speed.</p>\n<p>The IoT will of course present new challenges. It will require tooling to ?execute very large numbers of tests?, as well as the more fundamental challenge of creating these tests in the first place. <a rel=\"nofollow noopener noreferrer\" href=\"http://www.ca.com/us/lpg/perfecto-mobile-inc.aspx\" target=\"_blank\">Tools are emerging</a>, however, capable of executing tests efficiently across both software and hardware, while Model-Based approaches will presumably have a role to play here too.</p>\n<p>Similarly, <a rel=\"nofollow noopener noreferrer\" href=\"http://www.ca.com/gb/products/ca-test-data-manager.html\" target=\"_blank\">high performance data generation engines</a> which offer sufficiently comprehensive data generation functions already exist to create ?trusted data sets? based on ?real world operations?. CA worked with Hitachi Consulting, for instance, to generate realistic data for performance testing as part of Copenhagen?s move to become a smart city. As set out in chapter 5 of Hitachi Consulting?s eBook, <a rel=\"nofollow noopener noreferrer\" href=\"http://learn.hitachiconsulting.com/Engineering-the-New-Reality\" target=\"_blank\"><em>Engineering the New Reality</em></a>, this included creating data on the basis of historical data from 1.7 billion GPS journeys, while also learning from physical sensors such as GPS in mobile devices.</p>\n<h2>A Solid Foundation</h2>\n<p>The IoT will therefore present fresh challenges for testing, but there are already solid foundations on which it can build. As Paul concludes, ?testers will have to learn to create better test models and how to use them with more technical modelling and simulation tools?, but some of the techniques and technology already appear in place, and seem to be moving in the right direction to accommodate this shift.</p></div></div>",
            "bodyAsHTML": "<div class=\"fr-view clearfix\">\n <div class=\"fr-view clearfix\">\n  <p>The so-called Internet of Things (IoT) or Internet of Everything (IoE) is one of the fastest growing trends in technology, with Gartner having forecast <a rel=\"nofollow noopener noreferrer\" href=\"http://www.gartner.com/newsroom/id/3165317\" target=\"_blank\">6.4 billion connected ?things? in use in 2016</a>. It will be accompanied by fresh challenges as well as opportunities, and this is especially true when it comes to testing the connected devices and their software.</p> \n  <h2>The Additional Complexity of the Internet of Things</h2> \n  <p>A new article written for CA by Paul Gerrard, Principal, Gerrard Consulting, considers ?<a rel=\"nofollow noopener noreferrer\" href=\"https://www.ca.com/us/collateral/white-papers/how-will-the-internet-of-things-affect-testers.register.html\" target=\"_blank\">How will the Internet of Things Affect Testers?</a>? The potential risks of failure Paul identifies include the complexity of ?interactions between devices? which ?may be unpredicted, unforeseen and unknown?.</p> \n  <p>This is not a new challenge for testers who are often faced with more possible combinations than can reasonably be tested, while many of these combinations can be unknown. In both API testing and the IoT, for instance, testers are faced with numerous discrete units of work, each of which can be combined in different ways.</p> \n  <p>Some of these APIs might have been created by a third party, while the possible ordering and combinations of different versions of APIs can cause the number of combinations which might be tested to skyrocket to an impossible number.</p> \n  <p>The ability to ?? identify the hundreds, thousands or millions of tests? needed to rigorously test the interconnected devices will therefore be necessary when testing the IoT, as it is already in API testing. This will require the ability to systematically reducing the number of tests to a realistic number without compromising quality and Paul, like CA, advocates a <a rel=\"nofollow noopener noreferrer\" href=\"https://www.ca.com/us/collateral/white-papers/models-at-heart.register.html\" target=\"_blank\">Model-Based approach</a> to achieve this.</p> \n  <h2>Some New Tools and Technology Will Be Needed, Some Might Already Exist</h2> \n  <p>There are features particular to the IoT which might make it particularly complex, however. Among other factors, Paul identifies the lower level hardware devices often involved, as well as the fact that the user base might be millions of mobile individuals, with objects moving across networks and certain devices carrying their own network.</p> \n  <p>When considering how to perform functional testing in the face of such complexity, Paul suggests numerous requirements. Testers will need to be able to simulate ?thousands or millions of devices?, as well as having ?data that is fit for purpose?. The latter will involve the ability to generate and edit data, as well as to monitor and track its usage.</p> \n  <p>On the surface, these requirements are similar to the current need of testers to have constant access to realistic test data and production-like systems. Along with effective test case design, having the right data and environments form three pillars of rigorous testing at speed.</p> \n  <p>The IoT will of course present new challenges. It will require tooling to ?execute very large numbers of tests?, as well as the more fundamental challenge of creating these tests in the first place. <a rel=\"nofollow noopener noreferrer\" href=\"http://www.ca.com/us/lpg/perfecto-mobile-inc.aspx\" target=\"_blank\">Tools are emerging</a>, however, capable of executing tests efficiently across both software and hardware, while Model-Based approaches will presumably have a role to play here too.</p> \n  <p>Similarly, <a rel=\"nofollow noopener noreferrer\" href=\"http://www.ca.com/gb/products/ca-test-data-manager.html\" target=\"_blank\">high performance data generation engines</a> which offer sufficiently comprehensive data generation functions already exist to create ?trusted data sets? based on ?real world operations?. CA worked with Hitachi Consulting, for instance, to generate realistic data for performance testing as part of Copenhagen?s move to become a smart city. As set out in chapter 5 of Hitachi Consulting?s eBook, <a rel=\"nofollow noopener noreferrer\" href=\"http://learn.hitachiconsulting.com/Engineering-the-New-Reality\" target=\"_blank\"><em>Engineering the New Reality</em></a>, this included creating data on the basis of historical data from 1.7 billion GPS journeys, while also learning from physical sensors such as GPS in mobile devices.</p> \n  <h2>A Solid Foundation</h2> \n  <p>The IoT will therefore present fresh challenges for testing, but there are already solid foundations on which it can build. As Paul concludes, ?testers will have to learn to create better test models and how to use them with more technical modelling and simulation tools?, but some of the techniques and technology already appear in place, and seem to be moving in the right direction to accommodate this shift.</p>\n </div>\n</div>",
            "author": {
                "id": 43,
                "username": "Tom.Pryce",
                "reputation": 0
            },
            "lastEditedAction": 711,
            "activeRevisionId": 635,
            "revisionIds": [
                635
            ],
            "lastActiveUserId": 43,
            "lastActiveDate": 1547066767000,
            "originalParentId": 635,
            "attachments": [],
            "childrenIds": [],
            "commentIds": [],
            "marked": false,
            "topics": [
                {
                    "id": 621,
                    "creationDate": 1547066763000,
                    "creationDateFormatted": "01/09/2019 08:46 PM",
                    "name": "iot",
                    "author": {
                        "id": 43,
                        "username": "Tom.Pryce",
                        "reputation": 0
                    },
                    "usedCount": 6,
                    "getImmediateChildren": [],
                    "getParents": []
                }
            ],
            "primaryContainerId": 8,
            "containerIds": [
                7,
                8
            ],
            "slug": "testing-the-internet-of-everything-1",
            "wiki": false,
            "score": 0,
            "depth": 0,
            "viewCount": 0,
            "upVoteCount": 0,
            "downVoteCount": 0,
            "nodeStates": []
        },
        {
            "id": 794,
            "type": "kbentry",
            "creationDate": 1547066891000,
            "creationDateFormatted": "01/09/2019 08:48 PM",
            "title": "IoT in the Age of GDPR: 3 Tips for Success",
            "body": "<div class=\"fr-view clearfix\"><div class=\"fr-view clearfix\"><p>As organizations are beginning to build digital strategies that span web, mobile, and connected devices, they are encountering a new business landscapes that pose&nbsp;unprecedented challenges around data management, integration, user experience, and security.</p> \n<p>With the Internet of Things (IoT) driving a large part of this digitalization, enterprises are becoming more global and more connected than ever before. The line between industries is blurring as application programming interfaces (APIs) exchange data between app providers, payment processors, health and medical services, and consumer devices ? to name just a few examples of their reach. It is vital, then, that modern organizations approach digital business with an international and industry-agnostic mindset.</p> \n<p>Trust in technology and its components of privacy and security is an issue driving customer attention worldwide. This will translate increasingly to global regulatory mandates and legislation. Organizations, therefore, must be aware of how the regulations, challenges, and opportunities of doing business in specific countries or verticals will impact their enterprise ? either directly or through their customers, partners, and the business landscape at large.</p> \n<p>GDPR is one topical example. Although it is a European law, it will affect the majority of global businesses ? especially those investing in IoT. Let's look at the top 3 tips for preparing your IoT strategy for GDPR.</p> \n<h3><strong>1. Create situational awareness: think critically about the data your IoT systems collect and how to ensure business value outweighs the risk.</strong></h3> \n<p>As the number of connected devices and services grows with your IoT strategy, it can be easy to simply collect as much data as possible. But with GDPR, businesses must decide if the value of data is worth the effort it will take to obtain the appropriate permissions and to put in place adequate security to safeguard it.</p> \n<p>For example, IP address and GPS location are considered personal data and will require a clear legal ground to use. GPS location has been a fairly standard data type to collect from mobile apps and connected devices and provides value to many IoT solutions. Businesses must decide whether they will continue to collect this data, and if so, how to build the necessary features within their apps to obtain user permission.</p> \n<p>Biometrics is also considered a special category under GDPR with more stringent regulations for their collection and use. As connected devices like Amazon's Alexa enable new digital experiences such as voice recognition for mobile banking, global organizations building these types of integrations for customers must take into account GDPR and other privacy and security compliance requirements.</p> \n<h3><strong>2. Use GDPR as an opportunity to build security and privacy throughout.</strong></h3> \n<p>GDPR provides a strong framework for all companies to approach data protection: building security and privacy by design into IoT deployments. As you develop and build new applications, you must integrate a privacy and security mindset throughout that process. Not simply for compliance purposes, but also to drive real business differentiation.</p> \n<p>For example, one question needs to be where data is stored and how it is secured, including who has access to it. Such thinking will allow your business to gain value from IoT, as data must not be locked up in legacy systems or in silos. Rather, a high degree of integration must exist for data flowing from connected devices, apps, business systems, and third parties.</p> \n<p>Securing this data while enabling access will be crucial. This means supporting robust and scalable security from device to app to API to protect the &quot;triangle of trust&quot;&nbsp;? users, apps, and devices. To do so, enterprises must know where their data lives and be able to drill down to granular data such as at the device level. This enables both analysis and the ability to delete specific consumer data if directed to under GDPR.</p> \n<h3><strong>3. It?s not just about you: understand the security approaches taken by partners and system integrators to ensure data flowing into and out of your enterprise is protected.</strong></h3> \n<p>Organizations with an IoT strategy are likely supporting a number of integrations at the device, system, or partner level. This exchange of data opens the enterprise to compromise for which it may be liable under GDPR, posing implications for many global, IoT-driven companies with broad partner or integration ecosystems.</p> \n<p>For these organizations, robust <a rel=\"nofollow noopener noreferrer\" href=\"https://www.ca.com/us/products/api-management.html\" target=\"_blank\">API management</a> solutions provide security at the API level to protect enterprise data leaving the organization. They enable authorization and access management that ensures that only trusted third parties have access to data, and only to data that the business has designated or is legally able to share. This makes it easier to track permissions at a high-level for partners and consumers.</p> \n<p>Building a digital strategy with the above three tips in mind better prepares you for success in IoT, taking into account GDPR and what comes next.</p> \n<p>To learn more about GDPR, <a rel=\"nofollow noopener noreferrer\" href=\"https://twitter.com/CAinc/status/1000049570196459520\" target=\"_blank\">hear from CA's Chief Privacy Strategist</a>.</p> \n<p>Visit <a rel=\"nofollow noopener noreferrer\" href=\"https://www.ca.com/us/products/api-management-accelerate.html?intcmp=headernav\" target=\"_blank\">CA's IoT resource hub</a> for more information on building a secure, scalable IoT strategy.</p></div></div>",
            "bodyAsHTML": "<div class=\"fr-view clearfix\">\n <div class=\"fr-view clearfix\">\n  <p>As organizations are beginning to build digital strategies that span web, mobile, and connected devices, they are encountering a new business landscapes that pose&nbsp;unprecedented challenges around data management, integration, user experience, and security.</p> \n  <p>With the Internet of Things (IoT) driving a large part of this digitalization, enterprises are becoming more global and more connected than ever before. The line between industries is blurring as application programming interfaces (APIs) exchange data between app providers, payment processors, health and medical services, and consumer devices ? to name just a few examples of their reach. It is vital, then, that modern organizations approach digital business with an international and industry-agnostic mindset.</p> \n  <p>Trust in technology and its components of privacy and security is an issue driving customer attention worldwide. This will translate increasingly to global regulatory mandates and legislation. Organizations, therefore, must be aware of how the regulations, challenges, and opportunities of doing business in specific countries or verticals will impact their enterprise ? either directly or through their customers, partners, and the business landscape at large.</p> \n  <p>GDPR is one topical example. Although it is a European law, it will affect the majority of global businesses ? especially those investing in IoT. Let's look at the top 3 tips for preparing your IoT strategy for GDPR.</p> \n  <h3><strong>1. Create situational awareness: think critically about the data your IoT systems collect and how to ensure business value outweighs the risk.</strong></h3> \n  <p>As the number of connected devices and services grows with your IoT strategy, it can be easy to simply collect as much data as possible. But with GDPR, businesses must decide if the value of data is worth the effort it will take to obtain the appropriate permissions and to put in place adequate security to safeguard it.</p> \n  <p>For example, IP address and GPS location are considered personal data and will require a clear legal ground to use. GPS location has been a fairly standard data type to collect from mobile apps and connected devices and provides value to many IoT solutions. Businesses must decide whether they will continue to collect this data, and if so, how to build the necessary features within their apps to obtain user permission.</p> \n  <p>Biometrics is also considered a special category under GDPR with more stringent regulations for their collection and use. As connected devices like Amazon's Alexa enable new digital experiences such as voice recognition for mobile banking, global organizations building these types of integrations for customers must take into account GDPR and other privacy and security compliance requirements.</p> \n  <h3><strong>2. Use GDPR as an opportunity to build security and privacy throughout.</strong></h3> \n  <p>GDPR provides a strong framework for all companies to approach data protection: building security and privacy by design into IoT deployments. As you develop and build new applications, you must integrate a privacy and security mindset throughout that process. Not simply for compliance purposes, but also to drive real business differentiation.</p> \n  <p>For example, one question needs to be where data is stored and how it is secured, including who has access to it. Such thinking will allow your business to gain value from IoT, as data must not be locked up in legacy systems or in silos. Rather, a high degree of integration must exist for data flowing from connected devices, apps, business systems, and third parties.</p> \n  <p>Securing this data while enabling access will be crucial. This means supporting robust and scalable security from device to app to API to protect the &quot;triangle of trust&quot;&nbsp;? users, apps, and devices. To do so, enterprises must know where their data lives and be able to drill down to granular data such as at the device level. This enables both analysis and the ability to delete specific consumer data if directed to under GDPR.</p> \n  <h3><strong>3. It?s not just about you: understand the security approaches taken by partners and system integrators to ensure data flowing into and out of your enterprise is protected.</strong></h3> \n  <p>Organizations with an IoT strategy are likely supporting a number of integrations at the device, system, or partner level. This exchange of data opens the enterprise to compromise for which it may be liable under GDPR, posing implications for many global, IoT-driven companies with broad partner or integration ecosystems.</p> \n  <p>For these organizations, robust <a rel=\"nofollow noopener noreferrer\" href=\"https://www.ca.com/us/products/api-management.html\" target=\"_blank\">API management</a> solutions provide security at the API level to protect enterprise data leaving the organization. They enable authorization and access management that ensures that only trusted third parties have access to data, and only to data that the business has designated or is legally able to share. This makes it easier to track permissions at a high-level for partners and consumers.</p> \n  <p>Building a digital strategy with the above three tips in mind better prepares you for success in IoT, taking into account GDPR and what comes next.</p> \n  <p>To learn more about GDPR, <a rel=\"nofollow noopener noreferrer\" href=\"https://twitter.com/CAinc/status/1000049570196459520\" target=\"_blank\">hear from CA's Chief Privacy Strategist</a>.</p> \n  <p>Visit <a rel=\"nofollow noopener noreferrer\" href=\"https://www.ca.com/us/products/api-management-accelerate.html?intcmp=headernav\" target=\"_blank\">CA's IoT resource hub</a> for more information on building a secure, scalable IoT strategy.</p>\n </div>\n</div>",
            "author": {
                "id": 79,
                "username": "CharlotteODonnelly",
                "reputation": 16
            },
            "lastEditedAction": 890,
            "activeRevisionId": 794,
            "revisionIds": [
                794
            ],
            "lastActiveUserId": 79,
            "lastActiveDate": 1547066891000,
            "originalParentId": 794,
            "attachments": [],
            "childrenIds": [],
            "commentIds": [],
            "marked": false,
            "topics": [
                {
                    "id": 579,
                    "creationDate": 1547066743000,
                    "creationDateFormatted": "01/09/2019 08:45 PM",
                    "name": "integration",
                    "author": {
                        "id": 49,
                        "username": "valhuber",
                        "reputation": 0
                    },
                    "usedCount": 9,
                    "getImmediateChildren": [],
                    "getParents": []
                }
            ],
            "primaryContainerId": 8,
            "containerIds": [
                7,
                8
            ],
            "slug": "iot-in-the-age-of-gdpr-3-tips-for-success",
            "wiki": false,
            "score": 0,
            "depth": 0,
            "viewCount": 0,
            "upVoteCount": 0,
            "downVoteCount": 0,
            "nodeStates": []
        }
    ]
}

Response for sort="viewCount"

{
   "name":"",
   "sort":"viewCount",
   "page":1,
   "pageSize":15,
   "pageCount":11,
   "listCount":15,
   "totalCount":162,
   "sorts":[
      "active",
      "newest",
      "hottest",
      "votes",
      "viewCount",
      "usedCount",
      "answerCount",
      "answerCountAsc",
      "commentCount",
      "favoriteCount",
      "followers",
      "reportCount"
   ],
   "list":[
      {
         "id":5070,
         "type":"kbentry",
         "creationDate":1537865447000,
         "creationDateFormatted":"09/25/2018 08:50 AM",
         "title":"Lorem Ipsum",
         "body":"<h1>Lorem Ipsum</h1>\n<h2>test</h2>\n<h3>test</h3>\n<p>\n\ttest\ntest\n</p>\n<p>\n\tLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque magna urna, feugiat at ante eu, volutpat dapibus odio. Maecenas tincidunt dolor tincidunt velit porta gravida. Sed convallis ornare arcu eu pretium. In placerat tincidunt gravida. Aenean dui odio, lobortis vel nulla id, lobortis euismod nunc. In elementum, leo molestie faucibus vestibulum, dolor lectus pellentesque mauris, ut aliquam dolor est eu lacus. Maecenas mattis, ligula eget consectetur sagittis, velit purus condimentum turpis, a varius turpis libero ut quam. Pellentesque consequat arcu nulla, in imperdiet lacus blandit commodo.\n</p>\n<blockquote>\n\t<b>Praesent molestie mi lorem, in imperdiet ante vestibulum et. Cras posuere, orci ut lobortis dapibus, libero metus commodo nibh, ac egestas nulla justo non leo. Donec eu suscipit nulla, sed ultrices enim. Integer tristique arcu nisi, non pretium metus suscipit in. Nulla volutpat dapibus euismod. In arcu turpis, porttitor nec tempor sit amet, accumsan in neque. Nulla condimentum quis velit vel egestas.</b>\n</blockquote>\n<p>\n\t\tPraesent rhoncus metus vitae cursus aliquam. Quisque nec massa tristique sapien facilisis porta vestibulum non dolor. Duis vehicula lectus ex, viverra ultricies nisi sagittis eget. Nulla facilisi. Donec blandit elementum sem, ut placerat ipsum tempor vitae. Pellentesque a rhoncus ante. Etiam vel nunc eget mi faucibus placerat nec et eros. Praesent mi turpis, sollicitudin ac erat et, suscipit viverra mi. In hendrerit turpis eu posuere auctor. Maecenas iaculis facilisis nisl quis condimentum. Cras commodo magna in vulputate accumsan. Sed eget risus sapien. \n\tnot yet available!Nullam sed ante sollicitudin, egestas arcu et, porttitor lorem. Vivamus a tempus magna, sit amet condimentum nisi. Fusce ac dictum erat.\n</p>\n<p>\n\tNullam purus libero, elementum scelerisque est nec, vestibulum congue purus. Mauris quis tortor in neque scelerisque facilisis vitae at dui. Morbi mi justo, pellentesque sed hendrerit nec, porttitor in mi. Vestibulum vehicula dolor ut est commodo eleifend. Vivamus suscipit, mi quis consequat placerat, felis lectus accumsan augue, et faucibus augue massa eu mi. Nullam faucibus maximus placerat. Cras et lectus urna. In posuere ultricies orci, in hendrerit tellus elementum id.\n</p>\n<table>\n<tbody>\n<tr>\n\t<td>\n\t\tLorem ipsum\n\t</td>\n\t<td>\n\t\tLorem ipsum\n\t</td>\n\t<td>\n\t\tLorem ipsum\n\t</td>\n</tr>\n<tr>\n\t<td>\n\t\tLorem ipsum\n\t</td>\n\t<td>\n\t\tLorem ipsum\n\t</td>\n\t<td>\n\t\tLorem ipsum\n\t</td>\n</tr>\n</tbody>\n</table>\n<p>\n\tInteger tempus libero et urna interdum, non porta velit euismod. Praesent eu imperdiet nibh, ut rutrum justo. Quisque quis ante elit. Ut posuere finibus magna, id dignissim purus euismod vitae. Suspendisse id libero mi. Cras nunc justo, pellentesque id fermentum eget, gravida ut nisl. Nam magna elit, auctor vel lorem quis, malesuada porta eros. Nulla facilisi. Proin ac tempus metus.\n</p>\n<p>\n\t<img src=\"/storage/attachments/1055-getlorem-library-to-generate-lorem-ipsum-text.png\">\n</p>",
         "bodyAsHTML":"<h1>Lorem Ipsum</h1>\n<h2>test</h2>\n<h3>test</h3>\n<p>\n\ttest\ntest\n</p>\n<p>\n\tLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque magna urna, feugiat at ante eu, volutpat dapibus odio. Maecenas tincidunt dolor tincidunt velit porta gravida. Sed convallis ornare arcu eu pretium. In placerat tincidunt gravida. Aenean dui odio, lobortis vel nulla id, lobortis euismod nunc. In elementum, leo molestie faucibus vestibulum, dolor lectus pellentesque mauris, ut aliquam dolor est eu lacus. Maecenas mattis, ligula eget consectetur sagittis, velit purus condimentum turpis, a varius turpis libero ut quam. Pellentesque consequat arcu nulla, in imperdiet lacus blandit commodo.\n</p>\n<blockquote>\n\t<b>Praesent molestie mi lorem, in imperdiet ante vestibulum et. Cras posuere, orci ut lobortis dapibus, libero metus commodo nibh, ac egestas nulla justo non leo. Donec eu suscipit nulla, sed ultrices enim. Integer tristique arcu nisi, non pretium metus suscipit in. Nulla volutpat dapibus euismod. In arcu turpis, porttitor nec tempor sit amet, accumsan in neque. Nulla condimentum quis velit vel egestas.</b>\n</blockquote>\n<p>\n\t\tPraesent rhoncus metus vitae cursus aliquam. Quisque nec massa tristique sapien facilisis porta vestibulum non dolor. Duis vehicula lectus ex, viverra ultricies nisi sagittis eget. Nulla facilisi. Donec blandit elementum sem, ut placerat ipsum tempor vitae. Pellentesque a rhoncus ante. Etiam vel nunc eget mi faucibus placerat nec et eros. Praesent mi turpis, sollicitudin ac erat et, suscipit viverra mi. In hendrerit turpis eu posuere auctor. Maecenas iaculis facilisis nisl quis condimentum. Cras commodo magna in vulputate accumsan. Sed eget risus sapien. \n\tnot yet available!Nullam sed ante sollicitudin, egestas arcu et, porttitor lorem. Vivamus a tempus magna, sit amet condimentum nisi. Fusce ac dictum erat.\n</p>\n<p>\n\tNullam purus libero, elementum scelerisque est nec, vestibulum congue purus. Mauris quis tortor in neque scelerisque facilisis vitae at dui. Morbi mi justo, pellentesque sed hendrerit nec, porttitor in mi. Vestibulum vehicula dolor ut est commodo eleifend. Vivamus suscipit, mi quis consequat placerat, felis lectus accumsan augue, et faucibus augue massa eu mi. Nullam faucibus maximus placerat. Cras et lectus urna. In posuere ultricies orci, in hendrerit tellus elementum id.\n</p>\n<table>\n<tbody>\n<tr>\n\t<td>\n\t\tLorem ipsum\n\t</td>\n\t<td>\n\t\tLorem ipsum\n\t</td>\n\t<td>\n\t\tLorem ipsum\n\t</td>\n</tr>\n<tr>\n\t<td>\n\t\tLorem ipsum\n\t</td>\n\t<td>\n\t\tLorem ipsum\n\t</td>\n\t<td>\n\t\tLorem ipsum\n\t</td>\n</tr>\n</tbody>\n</table>\n<p>\n\tInteger tempus libero et urna interdum, non porta velit euismod. Praesent eu imperdiet nibh, ut rutrum justo. Quisque quis ante elit. Ut posuere finibus magna, id dignissim purus euismod vitae. Suspendisse id libero mi. Cras nunc justo, pellentesque id fermentum eget, gravida ut nisl. Nam magna elit, auctor vel lorem quis, malesuada porta eros. Nulla facilisi. Proin ac tempus metus.\n</p>\n<p>\n\t<img src=\"/storage/attachments/1055-getlorem-library-to-generate-lorem-ipsum-text.png\">\n</p>",
         "author":{
            "id":443,
            "username":"julz_qa",
            "realname":"Yulia ",
            "reputation":92
         },
         "lastEditedAction":20541,
         "activeRevisionId":6791,
         "revisionIds":[
            6791,
            6790,
            6789,
            6788,
            6786,
            6785,
            6784,
            6782,
            6781,
            6680,
            6651,
            6602
         ],
         "lastActiveUserId":571,
         "lastActiveDate":1538134521000,
         "originalParentId":5070,
         "attachments":[
            {
               "id":1055,
               "fileName":"getlorem-library-to-generate-lorem-ipsum-text.png",
               "size":13298,
               "sizeFormatted":"13.3 kB",
               "url":"/storage/attachments/1055-getlorem-library-to-generate-lorem-ipsum-text.png",
               "image":true
            }
         ],
         "childrenIds":[
            5072,
            5073,
            5074,
            5077,
            5080,
            5177,
            5211
         ],
         "commentIds":[
            5072,
            5073,
            5074,
            5177,
            5211
         ],
         "marked":false,
         "topics":[
            {
               "id":2351,
               "creationDate":1459949562000,
               "creationDateFormatted":"04/06/2016 01:32 PM",
               "name":"article",
               "author":{
                  "id":412,
                  "username":"testandtest888",
                  "reputation":79
               },
               "usedCount":13
            },
            {
               "id":904,
               "creationDate":1428940537000,
               "creationDateFormatted":"04/13/2015 03:55 PM",
               "name":"lorem ipsum",
               "author":{
                  "id":7,
                  "username":"dzone",
                  "realname":"",
                  "reputation":185
               },
               "usedCount":6
            }
         ],
         "primaryContainerId":49,
         "containerIds":[
            49,
            7
         ],
         "slug":"lorem-ipsum-2",
         "wiki":false,
         "score":0,
         "depth":0,
         "viewCount":78,
         "upVoteCount":0,
         "downVoteCount":0,
         "nodeStates":[
            "site_sticky"
         ]
      },
      {
         "id":3330,
         "type":"kbentry",
         "creationDate":1502105469000,
         "creationDateFormatted":"08/07/2017 11:31 AM",
         "title":"test article august",
         "body":"<p>test test test.</p>",
         "bodyAsHTML":"<p>test test test.</p>",
         "author":{
            "id":153,
            "username":"testlab",
            "realname":"testlab",
            "reputation":469
         },
         "lastEditedAction":12369,
         "activeRevisionId":4446,
         "revisionIds":[
            4446,
            4421
         ],
         "lastActiveUserId":2,
         "lastActiveDate":1523531156000,
         "originalParentId":3309,
         "attachments":[

         ],
         "childrenIds":[
            3331,
            3382,
            3383,
            3384,
            3411,
            3418,
            3419,
            3420,
            3421,
            3423,
            3426,
            3431,
            3432,
            3435,
            3436,
            3437,
            3438,
            4638
         ],
         "commentIds":[
            3331,
            3382,
            3383,
            3384,
            3411,
            3418,
            3419,
            3420,
            3421,
            3423,
            3426,
            3431,
            3432,
            3435,
            3437,
            3438,
            4638
         ],
         "marked":false,
         "topics":[
            {
               "id":3329,
               "creationDate":1502105469000,
               "creationDateFormatted":"08/07/2017 11:31 AM",
               "name":"test article distinguishing",
               "author":{
                  "id":153,
                  "username":"testlab",
                  "realname":"testlab",
                  "reputation":469
               },
               "usedCount":1
            },
            {
               "id":247,
               "creationDate":1381248990000,
               "creationDateFormatted":"10/08/2013 04:16 PM",
               "name":"test ",
               "author":{
                  "id":21,
                  "username":"laura",
                  "realname":"",
                  "reputation":208
               },
               "usedCount":401
            }
         ],
         "primaryContainerId":194,
         "containerIds":[
            194,
            7
         ],
         "slug":"test-article-august",
         "wiki":false,
         "score":0,
         "depth":0,
         "viewCount":46,
         "upVoteCount":0,
         "downVoteCount":0,
         "nodeStates":[

         ]
      },
      {
         "id":3703,
         "type":"kbentry",
         "creationDate":1507552609000,
         "creationDateFormatted":"10/09/2017 12:36 PM",
         "title":"New Child TEst Article loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong",
         "body":"<p>New Child TEst Article</p>",
         "bodyAsHTML":"<p>New Child TEst Article</p>",
         "author":{
            "id":153,
            "username":"testlab",
            "realname":"testlab",
            "reputation":469
         },
         "lastEditedAction":14028,
         "activeRevisionId":5072,
         "revisionIds":[
            5072,
            5071,
            4880,
            4879
         ],
         "lastActiveUserId":153,
         "lastActiveDate":1510855806000,
         "originalParentId":3701,
         "attachments":[

         ],
         "childrenIds":[
            3739,
            3887
         ],
         "commentIds":[
            3739,
            3887
         ],
         "marked":false,
         "topics":[
            {
               "id":3702,
               "creationDate":1507552609000,
               "creationDateFormatted":"10/09/2017 12:36 PM",
               "name":"new parent test article145",
               "author":{
                  "id":153,
                  "username":"testlab",
                  "realname":"testlab",
                  "reputation":469
               },
               "usedCount":1
            },
            {
               "id":3308,
               "creationDate":1501838127000,
               "creationDateFormatted":"08/04/2017 09:15 AM",
               "name":"new test parent article",
               "author":{
                  "id":153,
                  "username":"testlab",
                  "realname":"testlab",
                  "reputation":469
               },
               "usedCount":2
            }
         ],
         "primaryContainerId":46,
         "containerIds":[
            46,
            7
         ],
         "slug":"new-chicld-test-article",
         "wiki":false,
         "score":0,
         "depth":0,
         "viewCount":42,
         "upVoteCount":0,
         "downVoteCount":0,
         "nodeStates":[
            "sticky"
         ]
      },
      {
         "id":4788,
         "type":"kbentry",
         "creationDate":1523640275000,
         "creationDateFormatted":"04/13/2018 05:24 PM",
         "title":"I am creating an article here",
         "body":"<p>This is the content of the article</p><p>I will not mention the user.</p>",
         "bodyAsHTML":"<p>This is the content of the article</p>\n<p>I will not mention the user.</p>",
         "author":{
            "id":2,
            "username":"$$ANON_USER$$",
            "reputation":35
         },
         "lastEditedAction":18593,
         "activeRevisionId":6236,
         "revisionIds":[
            6236
         ],
         "lastActiveUserId":443,
         "lastActiveDate":1537866303000,
         "originalParentId":4788,
         "attachments":[

         ],
         "childrenIds":[
            4789,
            4790,
            4791,
            4792,
            4793,
            4794,
            4795,
            4796,
            4797,
            4798,
            4799,
            4800,
            4803,
            5083
         ],
         "commentIds":[
            4789,
            4790,
            4791,
            4792,
            4793,
            4794,
            4795,
            4796,
            4797,
            4798,
            4799,
            4800,
            4803,
            5083
         ],
         "marked":false,
         "topics":[
            {
               "id":2351,
               "creationDate":1459949562000,
               "creationDateFormatted":"04/06/2016 01:32 PM",
               "name":"article",
               "author":{
                  "id":412,
                  "username":"testandtest888",
                  "reputation":79
               },
               "usedCount":13
            }
         ],
         "primaryContainerId":8,
         "containerIds":[
            8,
            7
         ],
         "slug":"i-am-creating-an-article-here",
         "wiki":false,
         "score":1,
         "depth":0,
         "viewCount":37,
         "upVoteCount":1,
         "downVoteCount":0,
         "nodeStates":[
            "sticky"
         ]
      },
      {
         "id":3068,
         "type":"kbentry",
         "creationDate":1495527649000,
         "creationDateFormatted":"05/23/2017 08:20 AM",
         "title":"Article 826",
         "body":"<p>Article 826 .</p>\n",
         "bodyAsHTML":"<p>Article 826 .</p>\n",
         "author":{
            "id":466,
            "username":"123123",
            "realname":"123123",
            "reputation":129
         },
         "lastEditedAction":11495,
         "activeRevisionId":4142,
         "revisionIds":[
            4142,
            4099,
            4087,
            4084
         ],
         "lastActiveUserId":2,
         "lastActiveDate":1523531023000,
         "originalParentId":3068,
         "attachments":[

         ],
         "childrenIds":[
            3069,
            3070,
            3090
         ],
         "commentIds":[
            3069,
            3070
         ],
         "marked":false,
         "topics":[
            {
               "id":247,
               "creationDate":1381248990000,
               "creationDateFormatted":"10/08/2013 04:16 PM",
               "name":"test ",
               "author":{
                  "id":21,
                  "username":"laura",
                  "realname":"",
                  "reputation":208
               },
               "usedCount":401
            },
            {
               "id":2013,
               "creationDate":1444987997000,
               "creationDateFormatted":"10/16/2015 09:33 AM",
               "name":"new article",
               "author":{
                  "id":364,
                  "username":"nescafe",
                  "reputation":67
               },
               "usedCount":10
            }
         ],
         "primaryContainerId":194,
         "containerIds":[
            194,
            7
         ],
         "slug":"article-826",
         "wiki":false,
         "score":0,
         "depth":0,
         "viewCount":34,
         "upVoteCount":0,
         "downVoteCount":0,
         "nodeStates":[

         ]
      },
      {
         "id":2621,
         "type":"kbentry",
         "creationDate":1493031222000,
         "creationDateFormatted":"04/24/2017 10:53 AM",
         "title":"Test PARENT article REV 4",
         "body":"<p>Test PARENT article REV 4</p><p><img src=\"/storage/attachments/462-3.png\"></p><p>some text under the photo </p><p>and one more photo is here:</p><p><img src=\"/storage/attachments/463-cup.png\"></p><p>after editing please check the PDF format</p>",
         "bodyAsHTML":"<p>Test PARENT article REV 4</p><p><img src=\"/storage/attachments/462-3.png\"></p><p>some text under the photo </p><p>and one more photo is here:</p><p><img src=\"/storage/attachments/463-cup.png\"></p><p>after editing please check the PDF format</p>",
         "author":{
            "id":462,
            "username":"test.dzone2",
            "realname":"",
            "reputation":75
         },
         "lastEditedAction":9557,
         "activeRevisionId":3560,
         "revisionIds":[
            3560,
            3546,
            3544,
            3543,
            3542,
            3541,
            3540,
            3536
         ],
         "lastActiveUserId":443,
         "lastActiveDate":1493036154000,
         "originalParentId":2621,
         "attachments":[
            {
               "id":462,
               "fileName":"3.png",
               "size":3670,
               "sizeFormatted":"3.7 kB",
               "url":"/storage/attachments/462-3.png",
               "image":true
            },
            {
               "id":463,
               "fileName":"cup.png",
               "size":7793,
               "sizeFormatted":"7.8 kB",
               "url":"/storage/attachments/463-cup.png",
               "image":true
            }
         ],
         "childrenIds":[
            2084,
            2352,
            2624,
            2625,
            2626,
            2627,
            2628,
            2629,
            2630,
            2631,
            2632,
            2633,
            2636,
            4576
         ],
         "commentIds":[
            2624,
            2625,
            2626,
            2627,
            2628,
            2629,
            2630,
            2631,
            2632,
            2633,
            2636
         ],
         "marked":false,
         "topics":[
            {
               "id":247,
               "creationDate":1381248990000,
               "creationDateFormatted":"10/08/2013 04:16 PM",
               "name":"test ",
               "author":{
                  "id":21,
                  "username":"laura",
                  "realname":"",
                  "reputation":208
               },
               "usedCount":401
            },
            {
               "id":2613,
               "creationDate":1493023331000,
               "creationDateFormatted":"04/24/2017 08:42 AM",
               "name":"4",
               "author":{
                  "id":461,
                  "username":"test.dzone1",
                  "realname":"",
                  "reputation":43
               },
               "usedCount":2
            }
         ],
         "primaryContainerId":194,
         "containerIds":[
            194,
            7
         ],
         "slug":"test-parent-article",
         "wiki":false,
         "score":2,
         "depth":0,
         "viewCount":34,
         "upVoteCount":2,
         "downVoteCount":0,
         "nodeStates":[
            "sticky"
         ]
      },
      {
         "id":3761,
         "type":"kbentry",
         "creationDate":1508338235000,
         "creationDateFormatted":"10/18/2017 02:50 PM",
         "title":"Publish child article in another space1",
         "body":"<ul><li>Publish child article in another space - edited</li></ul>",
         "bodyAsHTML":"<ul><li>Publish child article in another space - edited</li></ul>",
         "author":{
            "id":443,
            "username":"julz_qa",
            "realname":"Yulia ",
            "reputation":92
         },
         "lastEditedAction":14000,
         "activeRevisionId":5050,
         "revisionIds":[
            5050,
            5049,
            4951
         ],
         "lastActiveUserId":443,
         "lastActiveDate":1510588405000,
         "originalParentId":3760,
         "attachments":[

         ],
         "childrenIds":[
            3820,
            3821
         ],
         "commentIds":[
            3820,
            3821
         ],
         "marked":false,
         "topics":[
            {
               "id":280,
               "creationDate":1381311162000,
               "creationDateFormatted":"10/09/2013 09:32 AM",
               "name":"1",
               "author":{
                  "id":2,
                  "username":"$$ANON_USER$$",
                  "reputation":35
               },
               "usedCount":15
            },
            {
               "id":280,
               "creationDate":1381311162000,
               "creationDateFormatted":"10/09/2013 09:32 AM",
               "name":"1",
               "author":{
                  "id":2,
                  "username":"$$ANON_USER$$",
                  "reputation":35
               },
               "usedCount":15
            },
            {
               "id":3836,
               "creationDate":1510588372000,
               "creationDateFormatted":"11/13/2017 03:52 PM",
               "name":"child article for test",
               "author":{
                  "id":443,
                  "username":"julz_qa",
                  "realname":"Yulia ",
                  "reputation":92
               },
               "usedCount":1
            }
         ],
         "primaryContainerId":242,
         "containerIds":[
            242,
            7
         ],
         "slug":"publish-child-article-in-another-space",
         "wiki":false,
         "score":0,
         "depth":0,
         "viewCount":33,
         "upVoteCount":0,
         "downVoteCount":0,
         "nodeStates":[
            "sticky"
         ]
      },
      {
         "id":4272,
         "type":"kbentry",
         "creationDate":1521145199000,
         "creationDateFormatted":"03/15/2018 08:19 PM",
         "title":"Personal info article - ​My name is @Siteadmin (aka @siteadmin). I'm 23 years old and live with my mammy, Nanna Siteadmin here is Morrisville, NC at 150 Preston Executive Drive Cary, NC 27513. phone number is +1 (919) 678-0300",
         "body":"<p>Article - My name is @Siteadmin (aka <em name=\"deleted_695\">anonymous user</em>). I'm 23 years old and live with my mammy, Nanna Siteadmin here is Morrisville, NC at 150 Preston Executive Drive Cary, NC 27513. My email is support<em name=\"deleted_695\">anonymous user</em>.com and my phone number is +1 (919) 678-0300</p>\n<p> <a href=\"/storage/attachments/844-running.txt\">running.txt</a></p>\n<p>https://www.youtube.com/watch?v=Ec0w6Ssd5QY</p>\n<p>&lt;iframe width=&quot;560&quot; height=&quot;315&quot; src=&quot;https://www.youtube.com/embed/BBz1JnfuuRE&quot; frameborder=&quot;0&quot; allow=&quot;autoplay; encrypted-media&quot; allowfullscreen&gt;&lt;/iframe&gt;</p>",
         "bodyAsHTML":"<p>Article - My name is @Siteadmin (aka <em>anonymous user</em>). I'm 23 years old and live with my mammy, Nanna Siteadmin here is Morrisville, NC at 150 Preston Executive Drive Cary, NC 27513. My email is support<em>anonymous user</em>.com and my phone number is +1 (919) 678-0300</p> \n<p> <a href=\"/storage/attachments/844-running.txt\">running.txt</a></p> \n<p><a target=\"_blank\">https://www.youtube.com/watch?v=Ec0w6Ssd5QY</a></p> \n<p><iframe width=\"560\" height=\"315\" src=\"&lt;a href=\">https://www.youtube.com/embed/BBz1JnfuuRE&amp;lt;/a&amp;gt;&amp;quot; frameborder=&amp;quot;0&amp;quot; allow=&amp;quot;autoplay; encrypted-media&amp;quot; allowfullscreen&amp;gt;</iframe></p>",
         "author":{
            "id":2,
            "username":"$$ANON_USER$$",
            "reputation":35
         },
         "lastEditedAction":16252,
         "activeRevisionId":5609,
         "revisionIds":[
            5609,
            5608,
            5607,
            5606,
            5605,
            5602,
            5601
         ],
         "lastActiveUserId":694,
         "lastActiveDate":1521177628000,
         "originalParentId":4272,
         "attachments":[

         ],
         "childrenIds":[
            4273,
            4275,
            4276,
            4277,
            4279
         ],
         "commentIds":[
            4273,
            4275,
            4276,
            4277,
            4279
         ],
         "marked":false,
         "topics":[
            {
               "id":4265,
               "creationDate":1521144656000,
               "creationDateFormatted":"03/15/2018 08:10 PM",
               "name":"social",
               "author":{
                  "id":2,
                  "username":"$$ANON_USER$$",
                  "reputation":35
               },
               "usedCount":3
            },
            {
               "id":2216,
               "creationDate":1447855553000,
               "creationDateFormatted":"11/18/2015 02:05 PM",
               "name":"flower",
               "author":{
                  "id":153,
                  "username":"testlab",
                  "realname":"testlab",
                  "reputation":469
               },
               "usedCount":2
            },
            {
               "id":2039,
               "creationDate":1445009232000,
               "creationDateFormatted":"10/16/2015 03:27 PM",
               "name":"whocares",
               "author":{
                  "id":2,
                  "username":"$$ANON_USER$$",
                  "reputation":35
               },
               "usedCount":6
            }
         ],
         "primaryContainerId":194,
         "containerIds":[
            194,
            7
         ],
         "slug":"personal-info-article-my-name-is",
         "wiki":false,
         "score":0,
         "depth":0,
         "viewCount":32,
         "upVoteCount":0,
         "downVoteCount":0,
         "nodeStates":[

         ]
      },
      {
         "id":2558,
         "type":"kbentry",
         "creationDate":1471990741000,
         "creationDateFormatted":"08/23/2016 10:19 PM",
         "title":"Will this activity show on my profile EDIT",
         "body":"<p>Will this activity show on my profile or will it show thub.blahl.blahl</p><p>revision 1</p><p>revision 4 removed revision 2</p><p>ljas;jhadjfhaldjgh revision 3</p><p>EDIT</p>",
         "bodyAsHTML":"<p>Will this activity show on my profile or will it show thub.blahl.blahl</p><p>revision 1</p><p>revision 4 removed revision 2</p><p>ljas;jhadjfhaldjgh revision 3</p><p>EDIT</p>",
         "author":{
            "id":21,
            "username":"laura",
            "realname":"",
            "reputation":208
         },
         "lastEditedAction":9503,
         "activeRevisionId":3534,
         "revisionIds":[
            3534,
            3533,
            3432,
            3431,
            3430,
            3429,
            3428
         ],
         "lastActiveUserId":462,
         "lastActiveDate":1493030355000,
         "originalParentId":2040,
         "attachments":[

         ],
         "childrenIds":[
            2563,
            2585
         ],
         "commentIds":[
            2563,
            2585
         ],
         "marked":false,
         "topics":[
            {
               "id":247,
               "creationDate":1381248990000,
               "creationDateFormatted":"10/08/2013 04:16 PM",
               "name":"test ",
               "author":{
                  "id":21,
                  "username":"laura",
                  "realname":"",
                  "reputation":208
               },
               "usedCount":401
            },
            {
               "id":1867,
               "creationDate":1444914930000,
               "creationDateFormatted":"10/15/2015 01:15 PM",
               "name":"edited",
               "author":{
                  "id":364,
                  "username":"nescafe",
                  "reputation":67
               },
               "usedCount":14
            }
         ],
         "primaryContainerId":45,
         "containerIds":[
            45,
            7
         ],
         "slug":"will-this-activity-show-on-my-profile",
         "wiki":false,
         "score":0,
         "depth":0,
         "viewCount":32,
         "upVoteCount":0,
         "downVoteCount":0,
         "nodeStates":[

         ]
      },
      {
         "id":1972,
         "type":"kbentry",
         "creationDate":1444920795000,
         "creationDateFormatted":"10/15/2015 02:53 PM",
         "title":"New middle article",
         "body":"New middle article\n",
         "bodyAsHTML":"New middle article\n",
         "author":{
            "id":364,
            "username":"nescafe",
            "reputation":67
         },
         "lastEditedAction":7147,
         "activeRevisionId":2610,
         "revisionIds":[
            2610
         ],
         "lastActiveUserId":365,
         "lastActiveDate":1493662716000,
         "originalParentId":1971,
         "attachments":[

         ],
         "childrenIds":[
            1975,
            1976,
            2375,
            2758,
            2778
         ],
         "commentIds":[
            2758,
            2778
         ],
         "marked":false,
         "topics":[
            {
               "id":1971,
               "creationDate":1444920769000,
               "creationDateFormatted":"10/15/2015 02:52 PM",
               "name":"New parent space",
               "author":{
                  "id":364,
                  "username":"nescafe",
                  "reputation":67
               },
               "usedCount":3
            },
            {
               "id":545,
               "creationDate":1384289665000,
               "creationDateFormatted":"11/12/2013 08:54 PM",
               "name":"space",
               "author":{
                  "id":2,
                  "username":"$$ANON_USER$$",
                  "reputation":35
               },
               "usedCount":8
            }
         ],
         "primaryContainerId":45,
         "containerIds":[
            45,
            7
         ],
         "slug":"new-middle-article",
         "wiki":false,
         "score":0,
         "depth":0,
         "viewCount":31,
         "upVoteCount":0,
         "downVoteCount":0,
         "nodeStates":[

         ]
      }
   ]
}
Language
Authorization
Basic
base64
:
Click Try It! to start a request and see the response here!