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 TopResponse
Supported Media Types
                - application/json
 
200 Response
Following model is returned when operation succeeds.
                
                
                    Root Schema : listBlogEntries_response
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            items(optional): 
            array  items
            
            The list of all Blog Entries
 
Nested Schema : items
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            author(optional): 
            object  author
            
            The description about the author of the Blog Entry
 - 
            category(optional): 
            array  category
            
            The description about the category of the Blog Entry
 - 
            content(optional): 
            string
            Content of the Blog Entry
 - 
            id(optional): 
            string
            ID of Blog Entry
 - 
            link(optional): 
            object  link
            
            The link to the Blog Entry
 - 
            published(optional): 
            string
            Date and time stamp when the Blog Entry is published.
 - 
            summary(optional): 
            object  summary
            
            The summary of the Blog Entry
 - 
            title(optional): 
            object  title
            
            The description about the title of the Blog Entry
 - 
            updated(optional): 
            string
            Date and time stamp when the Blog Entry is updated
 
Nested Schema : category
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayThe description about the category of the Blog Entry
    
    
    
    
    
        Show Source
        
        
    
    
    
    
    
    
Nested Schema : link
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectThe link to the Blog Entry
    
    
    
    
        Show Source
        - 
            href(optional): 
            string
            URL of the Blog Entry
 - 
            rel(optional): 
            string
            Denotes whether the destination is self/alternate for current page
 - 
            type(optional): 
            string
            Type/Format of link
 
Nested Schema : summary
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectThe summary of the Blog Entry
    
    
    
    
        Show Source
        - 
            content(optional): 
            string
            Summary of the Blog Entry
 - 
            type(optional): 
            string
            Type/Format of summary of Blog Entry
 
Nested Schema : title
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectThe description about the title of the Blog Entry
    
    
    
    
        Show Source
        - 
            content(optional): 
            string
            Title of the Blog Entry
 - 
            type(optional): 
            string
            Format of the title of Blog Entry
 
Nested Schema : items
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            label(optional): 
            string
            Label of the Blog Entry
 - 
            term(optional): 
            string
            Term of the Blog Entry
 
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
                
                
                    Root Schema : errorModel
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            devMessage(optional): 
            string
            An optional non-localized message containing technical information for developers
 - 
            errorCode(optional): 
            string
            The numerical code identifying the error
 - 
            errors(optional): 
            array  errors
            
            An optional list of errors if multiple errors were encountered
 - 
            message(optional): 
            string
            The localized message describing the error
 - 
            moreInfo(optional): 
            string
            An optional non-localized message with more information
 - 
            o:errorPath(optional): 
            string
            An optional machine readable description of where the error occurred
 - 
            status(optional): 
            string
            The HTTP status code
 - 
            type(optional): 
            string
            The URI to the HTTP state code definition
 
Nested Schema : errors
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayAn optional list of errors if multiple errors were encountered
    
    
    
    
    
        Show Source
        
        
    
    
    
    
    
    
Nested Schema : items
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            devMessage(optional): 
            string
            An optional non-localized message containing technical information for developers
 - 
            errorCode(optional): 
            string
            The numerical code identifying the error
 - 
            message(optional): 
            string
            The localized message describing the error
 - 
            moreInfo(optional): 
            string
            An optional non-localized message with more information
 - 
            o:errorPath(optional): 
            string
            An optional machine readable description of where the error occurred
 - 
            status(optional): 
            string
            The HTTP status code