SmartJobCenter

From RobotinoWiki
Revision as of 11:39, 5 August 2021 by Verbeek (talk | contribs) (Response)

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
{
  "jobs" : [
    {
      "robot" : 10,
      "job" : 10,
      "priority" : 1,
      "fromstation" : 2,
      "frombelt" : 1,
      "tostation" : 3,
      "tobelt" : 4,
      "state" : "DRIVING",
      "life-cycle-state" : "RUNNING"
    },
    {
      "robot" : 10,
      "job" : 11,
      "state" : "DRIVING",
      "life-cycle-state" : "RUNNING"
    }
  ]
}