EdgeRSU 인지이력 (제공)

1. EdgeRSU 목록 조회 API (GetEdgeRSUList)

요청 URL

https://service.mqnicrnd5.com/api/v1/esi/offer/gel

연계 주기

요청 시

프로토콜

HTTPS

HTTP 메서드

GET

데이터 포맷

참고사항

API를 요청할 때 다음 예와 같이 HTTP 요청 헤더에 접근 토큰(Access Token) 을 추가해야 합니다. 접근 토큰 앞에 "Bearer " 문자열을 추가해야 한다는 점에 주의하세요.

> GET /api/v1/esi/offer/gel?minLat=37.192&minLon=126.837&maxLat=37.193&maxLon=126.840 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/gel?minLat=37.192&minLon=126.837&maxLat=37.193&maxLon=126.840' \
--header 'Authorization: Bearer <접근 토큰>'

응답 예시

{
    "edgeRsuList": [
        {
            "edgeRsuId": "RSU90001",
            "lat": 37.192165,
            "lon": 126.839385
        },
        {
            "edgeRsuId": "RSU90002",
            "lat": 37.192734,
            "lon": 126.838774
        },
        {
            "edgeRsuId": "RSU90003",
            "lat": 37.192822,
            "lon": 126.837259
        }
    ]
}

2. EdgeRSU 인지 정보 목록 조회 API (GetEdgeRSURecognitionList)

요청 URL

https://service.mqnicrnd5.com/api/v1/esi/offer/gerl

연계 주기

요청 시

프로토콜

HTTPS

HTTP 메서드

GET

데이터 포맷

참고사항

API를 요청할 때 다음 예와 같이 HTTP 요청 헤더에 접근 토큰(Access Token) 을 추가해야 합니다. 접근 토큰 앞에 "Bearer " 문자열을 추가해야 한다는 점에 주의하세요.

> GET /api/v1/esi/offer/gerl?edgeRsuId=0000001,0000002&timestampMax=20240910&timestampMin=20240908 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/gerl?edgeRsuId=0000001%2C0000002&timestampMax=20240910&timestampMin=20240908' \
--header 'Authorization: Bearer <접근 토큰>'

응답 예시

{
    "edgeRsuSensingList": [
        {
            "edgeRsuId": "0000001",
            "queryStartDttm": "20240908",
            "queryEndDttm": "20240910",
            "data": [
                {
                    "dttm": "20240908",
                    "filePath": "rnd5-edgersu-map-result-bucket/0000001/20240908/0000001_Object_Detection_20240908.zip"
                },
                {
                    "dttm": "20240909",
                    "filePath": "rnd5-edgersu-map-result-bucket/0000001/20240909/0000001_Object_Detection_20240909.zip"
                }
            ]
        }
    ]
}

3. EdgeRSU 인지 정보 제공 API (GetObjectRecognition)

요청 URL

https://service.mqnicrnd5.com/api/v1/esi/offer/gor

연계 주기

요청 시

프로토콜

HTTPS

HTTP 메서드

GET

데이터 포맷

참고사항

API를 요청할 때 다음 예와 같이 HTTP 요청 헤더에 접근 토큰(Access Token) 을 추가해야 합니다. 접근 토큰 앞에 "Bearer " 문자열을 추가해야 한다는 점에 주의하세요.

> GET /api/v1/ers/offer/gor?filePath=rnd5-edgersu-map-result-bucket/0000001/20240908/0000001_Object_Detection_20240908.zip 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/gor?filePath=rnd5-edgersu-map-result-bucket%2F0000001%2F20240908%2F0000001_Object_Detection_20240908.zip' \
--header 'Authorization: Bearer <접근 토큰>'

응답 예시

Last updated