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": "f460d79b-eb8e-4a8a-b365-9e166d0a3337",
    "MembershipID": "5cda9194-1946-43ba-9189-df862358c07a",
    "Comments": "sample string 2",
    "BlogPostID": "0342f969-3164-4775-855d-7f58f03fa8df",
    "ParentBlogPostFeedbackID": "2cb09c69-8ecf-456a-b2b1-12997a678bf0",
    "Name": "sample string 5",
    "Website": "sample string 6",
    "CreatedTime": "2024-05-17T21:35:26.5453098-07:00",
    "SiteName": "sample string 8"
  },
  {
    "BlogPostFeedbackID": "f460d79b-eb8e-4a8a-b365-9e166d0a3337",
    "MembershipID": "5cda9194-1946-43ba-9189-df862358c07a",
    "Comments": "sample string 2",
    "BlogPostID": "0342f969-3164-4775-855d-7f58f03fa8df",
    "ParentBlogPostFeedbackID": "2cb09c69-8ecf-456a-b2b1-12997a678bf0",
    "Name": "sample string 5",
    "Website": "sample string 6",
    "CreatedTime": "2024-05-17T21:35:26.5453098-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>f460d79b-eb8e-4a8a-b365-9e166d0a3337</BlogPostFeedbackID>
    <BlogPostID>0342f969-3164-4775-855d-7f58f03fa8df</BlogPostID>
    <ParentBlogPostFeedbackID>2cb09c69-8ecf-456a-b2b1-12997a678bf0</ParentBlogPostFeedbackID>
    <SiteName>sample string 8</SiteName>
  </BlogPostFeedback>
  <BlogPostFeedback>
    <BlogPostFeedbackID>f460d79b-eb8e-4a8a-b365-9e166d0a3337</BlogPostFeedbackID>
    <BlogPostID>0342f969-3164-4775-855d-7f58f03fa8df</BlogPostID>
    <ParentBlogPostFeedbackID>2cb09c69-8ecf-456a-b2b1-12997a678bf0</ParentBlogPostFeedbackID>
    <SiteName>sample string 8</SiteName>
  </BlogPostFeedback>
</ArrayOfBlogPostFeedback>