Definition of CIMON REST API
Β
CIMON REST API |
UltimateAccess Web server provides REST API that lets anyone easily request the data in CIMON Historian Database. The verified end user may utilize the 4 types of data shared via REST API.
Β
1. Page Recorder |
Get recorded data list
URL : http://(IP):(PORT)/pageRec/page_rec_time
Method : 'POST'
Headers : βContent-Typeβ: βapplication/jsonβ
Request | Response |
{
"pageName":"Pagename"
} Β | {
"data": [
{
"start_time": (Start time),
"end_time": (End time),
"min_sec": (Minute/Second)
},
β¦
]
} Β |
2. Data Log |
Get data log
URL : http://(IP):(PORT)/dataLog/get_log_rawdata
Method : 'POST'
Headers : βContent-Typeβ: βapplication/jsonβ
Request | Response |
{
"tagArr":
[
"TAG1",
"TAG2",
"TAG3"
],
"startTime":"yyyy/MM/dd hh:mm:ss",
"endTime":"yyyy/MM/dd hh:mm:ss"
} Β | {
"data":[
{
"time": (Time),
"tag_name": (Tag name),
"tag_value": (Tag value)
},
β¦
]
} Β |
Β
3. Alarm History |
Get alarm history
URL : http://(IP):(PORT)/historyAlarm/get_history_alarm
Method : 'POST'
Headers : βContent-Typeβ: βapplication/jsonβ
NOTE : Enter asc (ascending) or desc (descending) to the parameter order to request data.
Request | Response |
{
"startTime":"yyyy/MM/dd hh:mm:ss",
"endTime":"yyyy/MM/dd hh:mm:ss",
"order":"asc"
} Β | {
"data": [
{
"time": (Time),
"freetime": (Cleared time),
"almtime": (Alarm time),
"occtime": (Occurred time),
"tag_name": (Tag name),
"value": (Tag value),
"statuscode": (Status code),
"status": (Status),
"typecode": (Type code),
"type": (Type),
"almlabel": (Alarm label),
"areacode": (Alarm zone code),
"area": (Alarm zone),
"priority": (Alarm level)
},
β¦
]
} Β |
4. Network Status |
Get network status
URL : http://(IP):(PORT)/networkStatus/get_network_status
Method : 'POST'
Headers : βContent-Typeβ: βapplication/jsonβ
Request | Response |
Β | {
"data": [
{
"station": (Station),
"address": (ν΅μ μ£Όμ),
"description": (Station description),
"status": (Normal / Abnormal),
"read": (Amount of reads),
"readerr": (Read error),
"readprect": (Read success rate),
"write": (Amount of writes),
"writeerr": (Write error),
"writeprect": (Write success rate)
},
β¦
]
} Β Β |