Difference between revisions of "SmartJobCenter"

From RobotinoWiki
(Query Params)
(Response)
Line 26: Line 26:
 
;STATUS CODE:200 OK
 
;STATUS CODE:200 OK
 
;Example
 
;Example
:<pre>
+
:
 +
<pre>
 
{
 
{
 +
  "robot" : 10,
 +
  "job" : 10,
 +
  "priority" : 1,
 +
  "fromstation" : 2,
 +
  "frombelt" : 1,
 +
  "tostation" : 3,
 +
  "tobelt" : 4,
 +
  "state" : "DRIVING",
 +
  "life-cycle-state" : "RUNNING"
 
}
 
}
 
</pre>
 
</pre>

Revision as of 11:35, 5 August 2021

Introduction

SmartJobCenter 64.png REST API to manage jobs and to read job status information.

GET methods

/jobinfo

Query Params

KEY VALUE DESCRIPTION
robot Robot ID. Only return jobs assigned to the given robot.
job Job ID. Only return job with the given ID.

Response

TYPE
JSON
STATUS CODE
200 OK
Example
{
  "robot" : 10,
  "job" : 10,
  "priority" : 1,
  "fromstation" : 2,
  "frombelt" : 1,
  "tostation" : 3,
  "tobelt" : 4,
  "state" : "DRIVING",
  "life-cycle-state" : "RUNNING" 
}