EdgeRSU 상태정보 (제공)
EdgeRSU 상태정보 조회 API (GetEdgeRSUStateInfo)
요청 URL
https://service.mqnicrnd5.com/api/v1/esi/offer/gesi
연계 주기
요청 시
프로토콜
HTTPS
HTTP 메서드
GET
데이터 포맷
참고사항
API를 요청할 때 다음 예와 같이 HTTP 요청 헤더에 접근 토큰(Access Token) 을 추가해야 합니다. 접근 토큰 앞에 "Bearer " 문자열을 추가해야 한다는 점에 주의하세요.
> GET /api/v1/esi/offer/gesi?edgeRsuId=RSU00001,RSU00006&stDttm=202503251019&edDttm=202505261050 HTTP/2
> Host: service.mqnicrnd5.com
> User-Agent: curl/7.64.1
> Accept: */*
> Authorization: Bearer <접근 토큰>
요청 예시
curl --location 'https://service.mqnicrnd5.com/api/v1/esi/offer/gesi?edgeRsuId=RSU00001,RSU00007'
--header 'Authorization: Bearer <접근 토큰>'
응답 예시
[
{
"sourceId": "RSU00001",
"edgeSensorStatus": [
{
"edgeId": "C0001",
"powerControl": {
"mode": "AUTO",
"status": "OFF"
},
"fanControl": {
"mode": "AUTO",
"status": "OFF"
},
"heaterControl": {
"mode": "AUTO",
"status": "OFF"
},
"preControl": {
"mode": "MANUAL",
"status": "OFF"
},
"doorStatus": {
"front": "OPEN",
"back": "CLOSE"
},
"sensorStatus": 1,
"temp": 60,
"humidity": 50,
"sensorErrCode": 0
},
{
"edgeId": "L0001",
"powerControl": {
"mode": "AUTO",
"status": "OFF"
},
"fanControl": {
"mode": "AUTO",
"status": "OFF"
},
"heaterControl": {
"mode": "AUTO",
"status": "OFF"
},
"preControl": {
"mode": "MANUAL",
"status": "OFF"
},
"doorStatus": {
"front": "OPEN",
"back": "CLOSE"
},
"sensorStatus": 1,
"temp": 60,
"humidity": 50,
"sensorErrCode": 0
}
],
"sdsmtimeStamp": "2025-09-24 16:44:41.189607"
},
{
"sourceId": "RSU00007",
"edgeSensorStatus": [
{
"edgeId": "C0001",
"powerControl": {
"mode": "AUTO",
"status": "OFF"
},
"fanControl": {
"mode": "AUTO",
"status": "OFF"
},
"heaterControl": {
"mode": "AUTO",
"status": "OFF"
},
"preControl": {
"mode": "MANUAL",
"status": "OFF"
},
"doorStatus": {
"front": "OPEN",
"back": "CLOSE"
},
"sensorStatus": 1,
"temp": 60,
"humidity": 50,
"sensorErrCode": 0
},
{
"edgeId": "L0001",
"powerControl": {
"mode": "AUTO",
"status": "OFF"
},
"fanControl": {
"mode": "AUTO",
"status": "OFF"
},
"heaterControl": {
"mode": "AUTO",
"status": "OFF"
},
"preControl": {
"mode": "MANUAL",
"status": "OFF"
},
"doorStatus": {
"front": "OPEN",
"back": "CLOSE"
},
"sensorStatus": 1,
"temp": 60,
"humidity": 50,
"sensorErrCode": 0
}
],
"sdsmtimeStamp": "2025-09-24 16:45:51.698403"
}
]
Last updated