GET api/Feedback/GetBlogPostFeedback

Gets a collection of BlogPostFeedback objects representing feedback left for Blog posts. Scope Site.Name:{SiteName} must be granted to retrieve the information (in other words - BlogPostFeedback can only be retrieved within the scope of a single Site). Supports query options like: $filter, $orderby, $select, $skip and $top.

Response Information

Response body formats

application/json, text/json

Sample:
[
  null,
  {
    "BlogPostFeedbackID": "4e2e67f8-b447-42d0-a74e-1551e0c11f92",
    "MembershipID": "6142892b-54d6-467c-8a1a-af19c59de76a",
    "Comments": "sample string 2",
    "BlogPostID": "feea198a-f681-44e6-8088-f5ac72d785e7",
    "ParentBlogPostFeedbackID": "e30fb5b1-08a5-4bee-bcd3-82b4d6158490",
    "Name": "sample string 5",
    "Website": "sample string 6",
    "CreatedTime": "2024-12-22T04:45:31.9392128-08:00",
    "SiteName": "sample string 8"
  },
  {
    "BlogPostFeedbackID": "4e2e67f8-b447-42d0-a74e-1551e0c11f92",
    "MembershipID": "6142892b-54d6-467c-8a1a-af19c59de76a",
    "Comments": "sample string 2",
    "BlogPostID": "feea198a-f681-44e6-8088-f5ac72d785e7",
    "ParentBlogPostFeedbackID": "e30fb5b1-08a5-4bee-bcd3-82b4d6158490",
    "Name": "sample string 5",
    "Website": "sample string 6",
    "CreatedTime": "2024-12-22T04:45:31.9392128-08:00",
    "SiteName": "sample string 8"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBlogPostFeedback xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MediaLibrarianCore">
  <BlogPostFeedback i:nil="true" />
  <BlogPostFeedback>
    <BlogPostFeedbackID>4e2e67f8-b447-42d0-a74e-1551e0c11f92</BlogPostFeedbackID>
    <BlogPostID>feea198a-f681-44e6-8088-f5ac72d785e7</BlogPostID>
    <ParentBlogPostFeedbackID>e30fb5b1-08a5-4bee-bcd3-82b4d6158490</ParentBlogPostFeedbackID>
    <SiteName>sample string 8</SiteName>
  </BlogPostFeedback>
  <BlogPostFeedback>
    <BlogPostFeedbackID>4e2e67f8-b447-42d0-a74e-1551e0c11f92</BlogPostFeedbackID>
    <BlogPostID>feea198a-f681-44e6-8088-f5ac72d785e7</BlogPostID>
    <ParentBlogPostFeedbackID>e30fb5b1-08a5-4bee-bcd3-82b4d6158490</ParentBlogPostFeedbackID>
    <SiteName>sample string 8</SiteName>
  </BlogPostFeedback>
</ArrayOfBlogPostFeedback>