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.

Back to Top

Response

Supported Media Types

200 Response

Following model is returned when operation succeeds.
Body ()
Root Schema : listBlogEntries_response
Type: object
Show Source
Nested Schema : items
Type: array
The list of all Blog Entries
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : author
Type: object
The description about the author of the Blog Entry
Show Source
Nested Schema : category
Type: array
The description about the category of the Blog Entry
Show Source
Nested Schema : summary
Type: object
The summary of the Blog Entry
Show Source
Nested Schema : title
Type: object
The description about the title of the Blog Entry
Show Source
Nested Schema : items
Type: object
Show Source
Example Response (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
Show Source
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top