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": "b1198691-5a2c-4060-902b-1654b2d8f992",
    "MembershipID": "32f35270-aaac-48e2-a18c-af234f670f84",
    "Comments": "sample string 2",
    "BlogPostID": "aec0bdc3-d3d1-4526-93b3-349985337e75",
    "ParentBlogPostFeedbackID": "c247f57b-36b0-4faa-aaa4-aa9faf544540",
    "Name": "sample string 5",
    "Website": "sample string 6",
    "CreatedTime": "2025-09-14T17:49:10.2028522-07:00",
    "SiteName": "sample string 8"
  },
  {
    "BlogPostFeedbackID": "b1198691-5a2c-4060-902b-1654b2d8f992",
    "MembershipID": "32f35270-aaac-48e2-a18c-af234f670f84",
    "Comments": "sample string 2",
    "BlogPostID": "aec0bdc3-d3d1-4526-93b3-349985337e75",
    "ParentBlogPostFeedbackID": "c247f57b-36b0-4faa-aaa4-aa9faf544540",
    "Name": "sample string 5",
    "Website": "sample string 6",
    "CreatedTime": "2025-09-14T17:49:10.2028522-07: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>b1198691-5a2c-4060-902b-1654b2d8f992</BlogPostFeedbackID>
    <BlogPostID>aec0bdc3-d3d1-4526-93b3-349985337e75</BlogPostID>
    <ParentBlogPostFeedbackID>c247f57b-36b0-4faa-aaa4-aa9faf544540</ParentBlogPostFeedbackID>
    <SiteName>sample string 8</SiteName>
  </BlogPostFeedback>
  <BlogPostFeedback>
    <BlogPostFeedbackID>b1198691-5a2c-4060-902b-1654b2d8f992</BlogPostFeedbackID>
    <BlogPostID>aec0bdc3-d3d1-4526-93b3-349985337e75</BlogPostID>
    <ParentBlogPostFeedbackID>c247f57b-36b0-4faa-aaa4-aa9faf544540</ParentBlogPostFeedbackID>
    <SiteName>sample string 8</SiteName>
  </BlogPostFeedback>
</ArrayOfBlogPostFeedback>