GetNotificationInterval
- 인쇄
- PDF
GetNotificationInterval
- 인쇄
- PDF
기사 요약
이 요약이 도움이 되었나요?
의견을 보내 주셔서 감사합니다.
개요
설정된 알림 간격을 조회합니다.
필요 권한
- View/getNotificationInterval
요청
요청 헤더
헤더명 | 필수 여부 | 타입 | 설명 |
---|---|---|---|
X-NCP-USE_PLATFORM_TYPE | Yes | string | VPC, CLASSIC 환경 중 택일 |
응답
응답 바디
- 응답 메시지 (1)
항목 | 타입 | 설명 |
---|---|---|
success | boolean | 요청 처리 여부 |
code | Integer | 응답코드 |
message | String | 응답 메시지 |
result | Object | 요청 결과 |
- 응답 메시지 (2) : 알람 설정
항목 | 타입 | 설명 |
---|---|---|
interval | integer | 알림 간격 (단위: ms) |
lastSendNotificationTime | integer | 마지막 알림 발송 시간 (timestamp) |
createTime | integer | 최초 알림 설정 시간 (timestamp) |
lastUpdatedTime | integer | 마지막 알림 설정 시간 (timestamp) |
platform | string | 플랫폼 환경 (VPC, CLASSIC) |
예시
요청 예시
GET {WBD_API_URL}/alarm/interval
X-NCP-USE_PLATFORM_TYPE: VPC
Content-Type: application/json; charset=utf-8
x-ncp-apigw-timestamp: {Timestamp}
x-ncp-iam-access-key: {Sub Account Access Key or STS Access Key}`
x-ncp-apigw-signature-v2: {API Gateway Signature}
응답 예시
{
"success": true,
"code": 0,
"message": "success",
"result": {
"id": "2020111011025900000001",
"memberNo": "1234",
"interval": 60000,
"lastSendNotificationTime": 1613793863403,
"createTime": 1604977381504,
"lastUpdatedTime": 1613803134565,
"platform": "VPC",
"isDeleted": false
}
}
오류 코드 예시
{
"success": false,
"code": 400,
"message": "Platform must be not null.",
"result": null
}
이 문서가 도움이 되었습니까?