One Sided Slugged Set

This API allows you to create sets of one sided sets like mats and boards. Accessible via /api/onesidedsluggedset.

Identities

DiceSticker
MeepleSticker
PawnSticker
TokenSticker

Properties

Each one sided set is accessed via /api/onesidedsluggedset and has the following properties. Complete details in OneSidedSluggedSetProperties.

id

The unique id for this one sided set. It will never change.

identity

The style of one sided set you want.

object_type

onesidedsluggedset

date_created

A date when the one sided set was created.

date_updated

A date when the one sided set was last updated.

name

The name the one sided set is known by.

game_id

A Game id. The unique id of a game that this one sided set belongs to.

quantity

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

Related Objects

game

The Game that this one sided set is a member of.

Relationships

members

The OneSidedSlugged members that belong to this set.

Methods

The methods used to fetch and manipulate one sided sets.

Create

 POST /api/onesidedsluggedset
session_id

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

name

Required.

game_id

Required.

quantity

Optional.

Returns:

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

Update

 PUT /api/onesidedsluggedset/xxx

See Create for details.

Delete

 DELETE /api/onesidedsluggedset/xxx
session_id

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

Returns:

 {
   "success" : 1
 }

Fetch

 GET /api/onesidedsluggedset/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.

_include_relationships

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

Returns:

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