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": "6b9645b4-e324-4d7b-91c5-b161eb894e8d",
    "MembershipID": "26b24cc3-72c2-4363-89df-a2b9c063b090",
    "Comments": "sample string 2",
    "BlogPostID": "7fb7f211-7a74-4b16-8a91-35ae3ae3935d",
    "ParentBlogPostFeedbackID": "f76070b6-a29f-4507-ba23-2df778225bff",
    "Name": "sample string 5",
    "Website": "sample string 6",
    "CreatedTime": "2024-11-21T14:16:02.5885776-08:00",
    "SiteName": "sample string 8"
  },
  {
    "BlogPostFeedbackID": "6b9645b4-e324-4d7b-91c5-b161eb894e8d",
    "MembershipID": "26b24cc3-72c2-4363-89df-a2b9c063b090",
    "Comments": "sample string 2",
    "BlogPostID": "7fb7f211-7a74-4b16-8a91-35ae3ae3935d",
    "ParentBlogPostFeedbackID": "f76070b6-a29f-4507-ba23-2df778225bff",
    "Name": "sample string 5",
    "Website": "sample string 6",
    "CreatedTime": "2024-11-21T14:16:02.5885776-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>6b9645b4-e324-4d7b-91c5-b161eb894e8d</BlogPostFeedbackID>
    <BlogPostID>7fb7f211-7a74-4b16-8a91-35ae3ae3935d</BlogPostID>
    <ParentBlogPostFeedbackID>f76070b6-a29f-4507-ba23-2df778225bff</ParentBlogPostFeedbackID>
    <SiteName>sample string 8</SiteName>
  </BlogPostFeedback>
  <BlogPostFeedback>
    <BlogPostFeedbackID>6b9645b4-e324-4d7b-91c5-b161eb894e8d</BlogPostFeedbackID>
    <BlogPostID>7fb7f211-7a74-4b16-8a91-35ae3ae3935d</BlogPostID>
    <ParentBlogPostFeedbackID>f76070b6-a29f-4507-ba23-2df778225bff</ParentBlogPostFeedbackID>
    <SiteName>sample string 8</SiteName>
  </BlogPostFeedback>
</ArrayOfBlogPostFeedback>