Two Sided Box Gloss

Boxes that have a top and a bottom. Accessible via /api/twosidedboxgloss.

Identities

LargeStoutBox

Properties

Each two sided box gloss has the following properties. Complete details in TwoSidedBoxGlossProperties.

id

The unique id for this two sided box gloss. It will never change.

identity

The style of box you want.

wing_object_type

twosidedboxgloss.

date_created

A date when the two sided box gloss was created.

date_updated

A date when the two sided box gloss was last updated.

name

The name the two sided box gloss is known by.

game_id

A Game id. The unique id of a game that this two sided box gloss belongs to.

quantity

An integer between 1 and 99. Defaults to 1. Allows for multiple copies of a two sided box gloss to be included in the game.

top_id

A File id. Sets the image that will be printed on the top part of the box. The ID is from a File. If a top_id is specified, then an extra property called top will be added which will briefly describe the image.

has_proofed_top

A boolean indicating whether the top image has been verified by the user to be correct.

bottom_id

A File id. Sets the image that will be printed on the bottom part of the box. The ID is from a File. If a bottom_id is specified, then an extra property called bottom will be added which will briefly describe the image.

has_proofed_bottom

A boolean indicating whether the bottom image has been verified by the user to be correct.

surfacing_treatment

What type of surfacing to perform on the item. Enumerated options, use the "Options" in Intro API.

spot_gloss_id

Only used if surfacing_treatment is set to spot_gloss. A File id. Sets the image that will be printed on top of the the top art in gloss. The ID is from a File. If a spot_gloss_id is specified, then an extra property called spot_gloss will be added which will briefly describe the image.

has_proofed_spot_gloss

A boolean indicating whether the spot_gloss image has been verified by the user to be correct.

spot_gloss_bottom_id

Only used if surfacing_treatment is set to spot_gloss. A File id. Sets the image that will be printed on top of the the bottom art in gloss. The ID is from a File. If a spot_gloss_bottom_id is specified, then an extra property called spot_gloss_bottom will be added which will briefly describe the image.

has_proofed_spot_gloss_bottom

A boolean indicating whether the spot_gloss_bottom image has been verified by the user to be correct.

Related Objects

game

The Game that this two sided box gloss is a member of.

Methods

The methods used to fetch and manipulate two sided box glosses.

Create

 POST /api/twosidedboxgloss
session_id

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

name

Required.

game_id

Required.

quantity

Optional.

top_id

Optional.

has_proofed_top

Optional.

bottom_id

Optional.

has_proofed_bottom

Optional.

Returns:

 {
   "id" : "xxx",
   "name" : "Box",
   ...
 }

Update

 PUT /api/twosidedboxgloss/xxx

See Create for details.

Delete

 DELETE /api/twosidedboxgloss/xxx
session_id

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

Returns:

 {
   "success" : 1
 }

Fetch

 GET /api/twosidedboxgloss/xxx
session_id

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

_include_related_objects

Optional. See "Related Objects" in Intro and Related Objects above for details.

Returns:

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