Art Test

Art Tests allow you to gather anonymous (and therefore unfiltered) feedback about the artwork in your game.

ArtTest Properties

Each Art Test is accessed via /api/arttest and has the following properties. Complete properties in ArtTestProperties.

id

The unique id for this art test. It will never change.

wing_object_type

arttest.

date_created

A date when the arttest was created.

date_updated

A date when the arttest was last updated.

name

The name the arttest is known by.

vote_count

The total count of votes for the arttest.

pretty_total

The total number of votes for "pretty" art.

functional_total

The total number of votes for "functional" art.

completed

A boolean which will be true if that arttest is complete.

completion_date

The date and time when the arttest was completed.

Related Objects

game

The Game that this arttest is a member of.

Art Test Methods

The methods used to fetch and manipulate arttests.

Fetch Art Test

 GET /api/arttest/xxx
session_id

Optional. The unique session id provided by a Session method.

_include_relationships

Optional. See "Relationships" in Intro and Art Test Relationships above for details.

Returns:

 {
   "id" : "xxx",
   "name" : "Guard",
   ...
 }
^ Back to Top ^