웹폼 목록 조회

GET /v2/webForm

웹폼의 목록을 조회합니다.

Headers

Response

{
    "success": true,
    "data": {
        "webFormList": [
                {
                        "id": "<webFormId>",
                        "name": "웹폼 이름",
                        "description": "웹폼 설명",
                        "status": "active",
                        "folderName": "폴더 이름",
                        "viewCount": 1,
                        "submitCount": 1,
                        "createdAt": "2024-02-01T05:12:16.797Z",
                        "updatedAt": "2024-02-01T05:12:26.667Z"
                },
                {...},
        ]
    }
}

Last updated