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": "db447514-3591-4ef0-b1be-bce559429ab8",
    "MembershipID": "82341978-eeaf-40bb-a5e3-df5459cf0614",
    "Comments": "sample string 2",
    "BlogPostID": "a796b3e7-5d8a-4130-8af6-2b773657c0dd",
    "ParentBlogPostFeedbackID": "eb839947-76f3-41c6-9dac-be365a86461c",
    "Name": "sample string 5",
    "Website": "sample string 6",
    "CreatedTime": "2025-01-22T07:49:50.6828145-08:00",
    "SiteName": "sample string 8"
  },
  {
    "BlogPostFeedbackID": "db447514-3591-4ef0-b1be-bce559429ab8",
    "MembershipID": "82341978-eeaf-40bb-a5e3-df5459cf0614",
    "Comments": "sample string 2",
    "BlogPostID": "a796b3e7-5d8a-4130-8af6-2b773657c0dd",
    "ParentBlogPostFeedbackID": "eb839947-76f3-41c6-9dac-be365a86461c",
    "Name": "sample string 5",
    "Website": "sample string 6",
    "CreatedTime": "2025-01-22T07:49:50.6828145-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>db447514-3591-4ef0-b1be-bce559429ab8</BlogPostFeedbackID>
    <BlogPostID>a796b3e7-5d8a-4130-8af6-2b773657c0dd</BlogPostID>
    <ParentBlogPostFeedbackID>eb839947-76f3-41c6-9dac-be365a86461c</ParentBlogPostFeedbackID>
    <SiteName>sample string 8</SiteName>
  </BlogPostFeedback>
  <BlogPostFeedback>
    <BlogPostFeedbackID>db447514-3591-4ef0-b1be-bce559429ab8</BlogPostFeedbackID>
    <BlogPostID>a796b3e7-5d8a-4130-8af6-2b773657c0dd</BlogPostID>
    <ParentBlogPostFeedbackID>eb839947-76f3-41c6-9dac-be365a86461c</ParentBlogPostFeedbackID>
    <SiteName>sample string 8</SiteName>
  </BlogPostFeedback>
</ArrayOfBlogPostFeedback>