OEE
OEE returns the actual OEE information for an area and its OEE objectives.
GET /areas/{id}/oee
Request attribute:
- id [mandatory]: area 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 area.
- message: "success" or a descriptive information of the error in any other case.
Example:
Content-Type: application/json Request: /areas/L1/oee?company=demo01&session=lparIA3NO0TizbbcKdG3jrvmehoIoqkXLemLVkGmHtXBaPS9Pc152MXBMXu3 Reponse (success): { "status": "0", "data": { "actual": { "oee": "86.52" }, "target": { "yellow": "77.32", "green": "86.98" } }, "message": "Success" } |