Coil Book Page

The child element of CoilBooks are coil book pages, which are accessible via /api/coilbookpage.

Properties

Each coil book page has the following properties with full details found at CoilBookPageProperties:

id

The unique id for this coil book page. It will never change.

wing_object_type

coilbookpage

date_created

A date when the coil book page was created.

date_updated

A date when the coil book page was last updated.

name

The name the coil book page is known by.

sequence_number

An integer between 1 and 20. The order this page should be included. Another way to think of it is the page number.

coilbook_id

A CoilBook id. The unique id of a coil book that this coil book page belongs to.

image_id

A File id. ets the image of the coil book page. The ID is from a File. If a image_id is specified, then an extra property called image will be added which will briefly describe the image.

has_proofed_image

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

Related Objects

coilbook

The CoilBook that this coil book page is a member of.

Methods

The methods used to fetch and manipulate coil book pages.

Create

 POST /api/coilbookpage
session_id

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

name

Required.

coil book_id

Required.

sequence_number

Optional.

image_id

Optional.

has_proofed_image

Optional.

Returns:

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

Update

 PUT /api/coilbookpage/xxx

See Create for details.

Delete

 DELETE /coilbookpage/xxx
session_id

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

Returns:

 {
   "success" : 1
 }

Fetch

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