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": "263ee06d-a437-4bb0-a33d-7cadf134297e",
    "MembershipID": "b7947139-3ef0-4585-ae65-2db786406f38",
    "Comments": "sample string 2",
    "BlogPostID": "f9838f65-0b57-4dfc-a9aa-5451e0b359bb",
    "ParentBlogPostFeedbackID": "30f7c417-6211-4978-9d88-56d1b1a3a923",
    "Name": "sample string 5",
    "Website": "sample string 6",
    "CreatedTime": "2025-07-17T01:49:33.9533299-07:00",
    "SiteName": "sample string 8"
  },
  {
    "BlogPostFeedbackID": "263ee06d-a437-4bb0-a33d-7cadf134297e",
    "MembershipID": "b7947139-3ef0-4585-ae65-2db786406f38",
    "Comments": "sample string 2",
    "BlogPostID": "f9838f65-0b57-4dfc-a9aa-5451e0b359bb",
    "ParentBlogPostFeedbackID": "30f7c417-6211-4978-9d88-56d1b1a3a923",
    "Name": "sample string 5",
    "Website": "sample string 6",
    "CreatedTime": "2025-07-17T01:49:33.9533299-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>263ee06d-a437-4bb0-a33d-7cadf134297e</BlogPostFeedbackID>
    <BlogPostID>f9838f65-0b57-4dfc-a9aa-5451e0b359bb</BlogPostID>
    <ParentBlogPostFeedbackID>30f7c417-6211-4978-9d88-56d1b1a3a923</ParentBlogPostFeedbackID>
    <SiteName>sample string 8</SiteName>
  </BlogPostFeedback>
  <BlogPostFeedback>
    <BlogPostFeedbackID>263ee06d-a437-4bb0-a33d-7cadf134297e</BlogPostFeedbackID>
    <BlogPostID>f9838f65-0b57-4dfc-a9aa-5451e0b359bb</BlogPostID>
    <ParentBlogPostFeedbackID>30f7c417-6211-4978-9d88-56d1b1a3a923</ParentBlogPostFeedbackID>
    <SiteName>sample string 8</SiteName>
  </BlogPostFeedback>
</ArrayOfBlogPostFeedback>