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

Searching for prototype feedback across all conventions is no longer supported. To search on a single prototype see "Relationships" in Prototype.

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
 }