Prototype Feedback

Allows a User to give feedback on a Prototype. Prototype Feedback is accessed via /api/prototypefeedback.

Properties

See "Object Properties" in Introduction for basic shared properties.

Complete details in PrototypeFeedbackProperties.

Related Objects

See "Related Objects" in Introduction for how to use them.

prototype

The Prototype this feedback belongs to.

user

The User that submitted this feedback.

Services

The services used to fetch and manipulate prototype feedback.

Search Prototype Feedback

This will search across all prototypes from all conventions. To search on a single prototype see "Relationships" in Prototype.

 GET /api/prototypefeedback

Returns:

 {
    "paging" : {...},
    "items" : [
        {
          "id" : "xxx",
          "prototype_id" : "xxx",
          ...
        },
        ...
    ]
 }

Create Prototype Feedback

 POST /api/prototypefeedback
Required Params
prototype_id
name

Returns the same as a normal read.

Read Prototype Feedback

 GET /api/prototypefeedback/xxx

Returns:

 {
   "id" : "xxx",
   "prototype_id" : "xxx",
   ...
 }

Update Prototype Feedback

 PUT /api/prototypefeedback/xxx

Returns the same as a normal read.

Delete Prototype Feedback

 DELETE /api/prototypefeedback/xxx

Returns:

 {
   "success" : 1
 }