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": "d47a00b1-6a4e-429d-83ec-de54c11be8b6",
    "MembershipID": "259e455b-ad13-4945-b38e-8a8c455d027c",
    "Comments": "sample string 2",
    "BlogPostID": "c06f16e0-7226-4db9-ae44-1f6ca90cbae5",
    "ParentBlogPostFeedbackID": "454977b8-c892-4f49-91cf-e4908101d032",
    "Name": "sample string 5",
    "Website": "sample string 6",
    "CreatedTime": "2024-04-19T18:31:20.869468-07:00",
    "SiteName": "sample string 8"
  },
  {
    "BlogPostFeedbackID": "d47a00b1-6a4e-429d-83ec-de54c11be8b6",
    "MembershipID": "259e455b-ad13-4945-b38e-8a8c455d027c",
    "Comments": "sample string 2",
    "BlogPostID": "c06f16e0-7226-4db9-ae44-1f6ca90cbae5",
    "ParentBlogPostFeedbackID": "454977b8-c892-4f49-91cf-e4908101d032",
    "Name": "sample string 5",
    "Website": "sample string 6",
    "CreatedTime": "2024-04-19T18:31:20.869468-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>d47a00b1-6a4e-429d-83ec-de54c11be8b6</BlogPostFeedbackID>
    <BlogPostID>c06f16e0-7226-4db9-ae44-1f6ca90cbae5</BlogPostID>
    <ParentBlogPostFeedbackID>454977b8-c892-4f49-91cf-e4908101d032</ParentBlogPostFeedbackID>
    <SiteName>sample string 8</SiteName>
  </BlogPostFeedback>
  <BlogPostFeedback>
    <BlogPostFeedbackID>d47a00b1-6a4e-429d-83ec-de54c11be8b6</BlogPostFeedbackID>
    <BlogPostID>c06f16e0-7226-4db9-ae44-1f6ca90cbae5</BlogPostID>
    <ParentBlogPostFeedbackID>454977b8-c892-4f49-91cf-e4908101d032</ParentBlogPostFeedbackID>
    <SiteName>sample string 8</SiteName>
  </BlogPostFeedback>
</ArrayOfBlogPostFeedback>