OEE returns the actual OEE information for a process and its OEE objectives.

GET /processes/{process}/oee

Request attribute:

    • process [mandatory]: Process identifier.

Request parameters:

    • company [mandatory]: The company name or id.
    • session [mandatory]: The Id of the active session.

Response:

    • status: Returns "0" on success, and an error code in any other case.
    • data: Returns the actual OEE and the target OEE for the current process.
    • message: "Success" or a descriptive information of the error in any other case.

Example:

Content-Type: application/json

Request: /processes/A0L1/oee?company=demo01&session=lparIA3NO0TizbbcKdG3jrvmehoIoqkXLemLVkGmHtXBaPS9Pc152MXBMXu3

Reponse (success):

{

 "status": "0",

 "data": {

   "actual": {

     "oee": "86.52"

   },

   "target": {

     "yellow": "77.32",

     "green": "86.98"

   }

 },

 "message": "Success"

}