One Sided Slugged

This API allows you to create stickers. Accessible via /api/onesidedslugged.

Complete details in OneSidedSluggedProperties.

id

The unique id for this onesidedslugged. It will never change.

wing_object_type

onesidedslugged

date_created

A date when the onesidedslugged was created.

date_updated

A date when the onesidedslugged was last updated.

name

The name the onesidedslugged is known by.

quantity

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

face_id

A File id. Sets the face image of the onesidedslugged. The ID is from a File. If a face_id is specified, then an extra property called face will be added which will briefly describe the image.

has_proofed_face

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

Related Objects

set

The Set that this onesidedslugged is a member of.

Methods

The methods used to fetch and manipulate onesidedsluggeds.

Create

 POST /api/onesidedslugged
session_id

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

name

Required.

setid

Required.

quantity

Optional.

face_id

Optional.

has_proofed_face

Optional.

Returns:

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

Update

 PUT /api/onesidedslugged/xxx

See Create for details.

Delete

 DELETE /api/onesidedslugged/xxx
session_id

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

Returns:

 {
   "success" : 1
 }

Fetch

 GET /api/onesidedslugged/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" : "Guard",
   ...
 }
^ Back to Top ^