GET odata/MediaFeedbacks?$filter={x}|$select={x}|$orderby={x}|$top={x}|$skip={x}|$count=true
Applies one of the OData operators to MediaFeedback objects. For the full list of operators with their sample usage please see OData documentation.
Response Information
Response body formats
application/json, text/json
Sample for GET odata/MediaFeedbacks?$filter=Name eq 'Tho'
{ "odata.metadata": "http://sampleserver.com:82/odata/$metadata#MediaFeedback", "value": [ { "MediaFeedbackID": "0b283273-4f97-4222-9b08-8d3f41d1836c", "MembershipID": null, "Comments": "This is some audio", "MediaID": "0af8bc3f-b0cb-49c4-97f6-7973abab3d57", "ParentMediaFeedbackID": null, "Name": "Tho", "Website": "", "CreatedTime": "2014-05-17T15:19:21.173" } ] }
application/json, text/json
Sample for GET odata/MediaFeedbacks?$select=Comments
{ "odata.metadata":"http://sampleserver.com/odata/$metadata#MediaFeedback&$select=Comments","value":[ { "Comments":"First comment" },{ "Comments":"Second comment" } ] }
application/json, text/json
Sample for GET odata/MediaFeedbacks?$count=true
{ "odata.metadata": "http://sampleserver.com/odata/$metadata#MediaFeedback", "odata.count": "2, "value": [ { "MediaFeedbackID": "d8ffa433-f405-4411-a10c-128730bcf9db", "MembershipID": null, "Comments": "This is sample comment 1.", "MediaID": "a693621c-a367-4ed4-ba90-d012a1636e4a", "ParentMediaFeedbackID": null, "Name": "Pat", "Website": "unit.test.com", "CreatedTime": "2014-05-15T19:40:42.24" }, { "MediaFeedbackID": "6cc0405d-72b6-49f3-9678-f2b3f2b6acc0", "MembershipID": null, "Comments": "This is sample comment 2", "MediaID": "77228aeb-8a16-4ee7-88c5-e28dcd459611", "ParentMediaFeedbackID": null, "Name": "Don", "Website": "unit.test.com", "CreatedTime": "2014-05-15T19:42:27.6" } ] }