Prototype Interest

This allows a User to designate that they would like to play a Prototype. Prototype Interest is accessed via /api/prototypeinterest.

Properties

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

Complete details in PrototypeInterestProperties.

Related Objects

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

prototype

The Prototype this interest is referring to.

Services

The services used to fetch and manipulate prototype interests.

Create Prototype Interest

 POST /api/prototypeinterest
Required Params
prototype_id

Returns the same as a normal read.

Read Prototype Interest

 GET /api/prototypeinterest/xxx

Returns:

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

Update Prototype Interest

 PUT /api/prototypeinterest/xxx

Returns the same as a normal read.

Delete Prototype Interest

 DELETE /api/prototypeinterest/xxx

Returns:

 {
   "success" : 1
 }