listBlogEntries

get

/ccadmin/v1/blogs

List Blog Entries. Pulls in the blog feeds and lists the blog entries

Request

There are no request parameters for this operation.

Response

Supported Media Types
  • application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : listBlogEntries_response
Nested Schema : items
Type: array
The list of all Blog Entries
Nested Schema : items
Type: object
Nested Schema : author
Type: object
The description about the author of the Blog Entry
Nested Schema : category
Type: array
The description about the category of the Blog Entry
Nested Schema : summary
Type: object
The summary of the Blog Entry
Nested Schema : title
Type: object
The description about the title of the Blog Entry
Nested Schema : items
Type: object
Example application/json

[
    {
        "summary":{
            "type":"html",
            "content":"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
        },
        "author":{
            "name":"JohnDoe"
        },
        "link":{
            "rel":"alternate",
            "href":"https://blogs.oracle.com/OCCS/entry/lorum_ipsam",
            "type":"text/html"
        },
        "id":"https://blogs.oracle.com/OCCS/entry/lorum_ipsam",
        "published":"2014-04-07T14:54:53+00:00",
        "category":[
            {
                "term":"/Dashboard",
                "label":"Dashboard"
            }
        ],
        "title":{
            "type":"html",
            "content":"Lorum Ipsam"
        },
        "updated":"2014-04-07T14:54:53+00:00",
        "content":"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n   \r\n   "
    },
    {
        "author":{
            "name":"JohnDoe"
        },
        "link":{
            "rel":"alternate",
            "href":"https://blogs.oracle.com/OCCS/entry/test_entry_2",
            "type":"text/html"
        },
        "id":"https://blogs.oracle.com/OCCS/entry/test_entry_2",
        "published":"2013-11-23T23:09:51+00:00",
        "category":{
            "term":"/Dashboard",
            "label":"Dashboard"
        },
        "title":{
            "type":"html",
            "content":"Test Entry 2"
        },
        "updated":"2013-11-23T23:09:51+00:00",
        "content":"This is Test Entry number 2"
    },
    {
        "author":{
            "name":"JohnDoe"
        },
        "link":{
            "rel":"alternate",
            "href":"https://blogs.oracle.com/OCCS/entry/test_entry_1",
            "type":"text/html"
        },
        "id":"https://blogs.oracle.com/OCCS/entry/test_entry_1",
        "published":"2013-11-23T23:08:43+00:00",
        "category":{
            "term":"/Dashboard",
            "label":"Dashboard"
        },
        "title":{
            "type":"html",
            "content":"Test Entry 1"
        },
        "updated":"2013-11-23T23:09:11+00:00",
        "content":"This is Test Entry number 1"
    }
]
Default Response
The error response
Body
Root Schema : errorModel
Type: object
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Nested Schema : items
Type: object