For the complete documentation index, see llms.txt. This page is also available as Markdown.

웹폼 제출 내역조회

GET /v2/webForm/<webFormId>/submit

webFormId에 해당하는 웹폼에 제출 된 내역들을 조회합니다.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Path parameters

Name
Type
Description

webFormId

string

조회하려는 웹폼의 id. 인증된 API 키의 워크스페이스에 속한 웹폼만 조회할 수 있습니다.

Query parameters

Name
Type
Description

cursor

string

페이지네션을 위한 커서

Response

{
   {
    "success": true,
    "data": {
        "webFormSubmitList": [
            {
                "peopleId": "<peopleId>",
                "organizationId": "<organizationId>",
                "dealId": "<dealId>",
                "leadId": "<leadId>",
                "contents": [
                    {
                        "label": "이름",
                        "value": "이름 라벨에 제출 된 이름"
                    },
                    {
                        "label": "선택 필드",
                        "value": "선택지 1",
                        "childFieldList": [
                            {
                                "label": "선택필드의 종속필드 1",
                                "value": "종속 필드에 작성된 내용 "
                            },
                            {
                                "label": "선택필드의 종속필드 2",
                                "value": null
                            }
                        ]
                    },
                    {
                        "label": "전화",
                        "value": "12312341234"
                    },
                    {}
                ],
                "createdAt": "2024-04-22T02:00:11.624Z"
            },
```
        ],
        "nextCursor": "cursor",
    }
}

존재하지 않는 webFormId이거나 인증된 API 키의 워크스페이스에 속하지 않는 웹폼을 조회하면 동일하게 400 Bad Request가 반환됩니다.

Last updated

Was this helpful?