조회

메시지키를 기준으로 리포트를 조회합니다.

  • 리포트 연동방식(Polling / Webhook)으로 전달되지 못한 개별 리포트 들을 조회하기 위한 API 입니다.

최대 30일 이전의 리포트를 조회 할 수 있습니다.

리포트 개별 조회

GET /v1/report/inquiry/{msgKey}

Request

Header

NameTypeDescription

Authorization

String

schema + “ “ + token

Accept

String

application/json

Path Parameter

NameTypeRequiredDescription

msgKey

String

YES

메시지 키

curl -X GET https://omni.ibapi.kr/v1/report/inquiry/메시지키\
-H "content-type: application/json" \
-H "Accept: application/json" \
-H "Authorization:Bearer 발급받은 토큰" 

Response

Header

NameTypeDescription

Content-Type

String

application/json

Body

NameTypeDescription

String(4)

API호출 결과 코드

result

String

API호출 결과 설명

Object

API호출 데이터

Schema

data

NameTypeDescription

report

Object Array

리포트 정보

{
    "code": "A000",
    "result": "Success",    
    "data": {         
         "report":[
             {
               "msgKey": "메시지 키",
               "serviceType": "서비스 타입",
               "msgType": "메시지 타입",
               "sendTime": "2024-00-00T00:00:00+09:00",
               "reportTime": "2024-00-00T00:00:00+09:00",
               "reportType": "0",
               "reportCode": "10000",
               "reportText": "Success",
               "carrier": "10001",
               "ref": "요청시 입력한 데이터"
             }
         ]
    }     
}

Last updated

Copyright Infobank Corp. ALL right reserverd