Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Cabinet

...

URL

...

http://<<ip address>>/rest/cabinet

...

Method

...

GET

...

Description

...

Receives information on the cabinet.

...

Response

...

Code Block
languagejson
{
  "planks": «numberofplanks», 
  "sections": «numberofsections»,
  "name": «nameofcabinet»,
  "status": [«listofhumanreadablestatusmessages»]
}

Status message can be:

  • Missing tag at plank P, section S (Tag ID N)

  • No connection to controller

When list of messages is empty, cabinet is “OK”.

...

Status

...

Status
colourGreen
titleimplemented

...

URL

The API enables any programmer to directly control the PTL Control using a REST interface and a websocket.

The base address for the REST interface is http://<<ip address>>:5000/rest

...

Method

...

PUT

...

Description

...

.

...

Request

...

Code Block
languagejson
{ 
  "planks": «numberofplanks», 
  "sections": «numberofsections»,
   "name": «nameofcabinet»
}

...

Response

...

...

Possible Errors

...

HTTP400 when request was invalid

Code Block
languagejson
{
  "message": «human readable error»
}

...

Status

...

Status
colourGreen
titleimplemented

...

URL

...

http://<<ip address>>/rest/cabinet/lighttest

...

Method

...

PUT

...

Description

...

The

...

Request

...

Code Block
languagejson
{ 
  "mode": "on" | "off"
}

...

Response

...

HTTP204 when successful

...

Possible Errors

...

HTTP400 when request was invalid

Code Block
languagejson
{
  "message": «human readable error»
}

...

Status

...

Status
colourGreen
titleimplemented

...

URL

...

http://<<ip address>>/rest/cabinet/teach

...

Method

...

PUT

...

Description

...

Sets the cabinet in or out of teach mode.

...

Request

...

Code Block
languagejson
{ 
  "mode": "on" | "off"
}

...

Response

...

HTTP204 when successful

...

Possible Errors

...

HTTP400 when request was invalid

Code Block
languagejson
{
  "message": «human readable error»
}

...

Status

...

Status
colourYellow
titlepending

...

URL

...

http://<<ip address>>/rest/cabinet/teach

...

Method

...

GET

...

Description

...

Get current state of teach mode

...

Responses

...

HTTP204 when not in teach mode

HTTP200 when in teach mode, with following body:

Code Block
languagejson
{
  "tag": [«list of tags found»]
}

...

Status

...

Status
colourYellow
titlepending

Section

Plank and section numbering is 1-based. So if 4 planks are available, they are numbered 1 to 4.

...

URL

...

http://<<ip address>>/rest/plank/«plankno»/section/«sectionno»

...

Method

...

GET

...

Description

...

Receives information of section.

...

Response

...

Code Block
languagejson
{
  "value": «lastdisplayedvalue»,
  "state": «state»
}

...

Possible Error

...

HTTP404 with no body when section does not exist.

...

Status

...

Status
colourGreen
titleimplemented

...

URL

...

http://<<ip address>>/rest/plank/«plankno»/section/«sectionno»

...

Method

...

PUT

...

Description

...

Sets value on display.

...

Request

...

Code Block
languagejson
{
  "value": «valuetodisplay»
}

...

Response

...

HTTP204 when successful

...

Possible Errors

...

HTTP400 when request was invalid

Code Block
languagejson
{
  "message": «human readable error»
}

HTTP404 with no body when section does not exist

...

Status

...

address for the websocket is ws://<<ip address>>:5000/ws.

The API has the following actions available:

Child pages (Children Display)