규칙 목록 조회
    • PDF

    규칙 목록 조회

    • PDF

    Article Summary

    개요

    규칙 목록을 조회합니다

    요청

    요청 URL

    GET {CLOUD_IOT_CORE_API_URL}/rules
    
    Content-Type: application/json; charset=utf-8
    x-ncp-apigw-timestamp: {Timestamp}
    x-ncp-iam-access-key: {Sub Account Access Key}
    x-ncp-apigw-signature-v2: {API Gateway Signature}
    

    요청 파라미터

    파라미터명필수 여부타입제약 사항설명
    pageNoint페이지 번호. 기본값 : 0
    sizeNoint결과 목록 크기. 기본값: 10

    응답

    응답 바디

    {
        "status": "string",
        "body": {
            "content": [
                {
                    "name": "string",
                    "description": "string",
                    "status": "string",
                    "query": "string",
                    "modifyTime": "localDateTime",
                    "registerTime": "localDateTime",
                    "filterTopic": "string"
                }
            ],
            "page": {
                "size": "long",
                "totalElements": "long",
                "totalPages": "long",
                "number": "long"
            }
        }
    }
    
    항목타입설명
    statusstring응답 성공 여부
    body.content[].namestring규칙 이름
    body.content[].descriptionstring규칙 설명
    body.content[].statusstring규칙 상태
    body.content[].querystring규칙 쿼리
    body.content[].modifyTimelocalDateTime규칙 최근 수정날짜
    body.content[].registerTimelocalDateTime규칙 생성날짜
    body.content[].filterTopicstring규칙 토픽

    예시

    {
        "status": "SUCCESS",
        "body": {
            "content": [
                {
                    "name": "lux",
                    "description": "turn off",
                    "status": "ENABLE",
                    "query": "select lux, bulb_id from \"myhome100/abc/+/abc\" where lux > -1",
                    "modifyTime": "2020-09-25 20:10:56",
                    "registerTime": "2020-09-25 20:10:56",
                    "filterTopic": "myhome100/abc/+/abc"
                }
            ],
            "page": {
                "size": 10,
                "totalElements": 1,
                "totalPages": 1,
                "number": 0
            }
        }
    }
    

    이 문서가 도움이 되었습니까?

    What's Next
    Changing your password will log you out immediately. Use the new password to log back in.
    First name must have atleast 2 characters. Numbers and special characters are not allowed.
    Last name must have atleast 1 characters. Numbers and special characters are not allowed.
    Enter a valid email
    Enter a valid password
    Your profile has been successfully updated.