Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Request moving an Rx-Universe job to a new job tracking station


Allows a third-party application to request an update to job tracking for a job in Rx-Universe.


Example:

http://localhost:4567/api/create_jobtrack?order=2341296&station=001

input - 2 parameters, the order number of the job to move, and the Rx-Universe station ID to move it to


returns

{
  "input-job": "2341296",
  "input-station": "001",
  "result": "successful"
}

If the order number specified does not exist as an in-process order in Rx-Universe, the response would be:

{
  "input-job": "2341299",
  "input-station": "001",
  "result": "order not found"
}

If the job station requested is not a valid job station in Rx-Universe, the response would be:

{
  "input-job": "2341296",
  "input-station": "022",
  "result": "invalid station"
}


  • No labels