SOLVED

Form Fills Chart Over time In Domo

Go to solution
cookiemonstersa
Level 4

Form Fills Chart Over time In Domo

Hey! 

Has anyone had success showing form fills for specific forms over time in domo? I can get it over time, but with the listed data points:
- activity date
- activity name
- campaign
- details
- form fields
- referrer URL 
I'm not sure its possible to create a segment for specific forms only? Also please note that a lot of forms do not have fields specific to just that form. Has anyone been able to pull form ID attached to activity in domo? 

Screenshot 2024-02-27 at 5.08.42 PM.png

Tags (4)
1 ACCEPTED SOLUTION

Accepted Solutions
Darshil_Shah1
Level 10 - Community Advisor + Adobe Champion

Re: Form Fills Chart Over time In Domo

@cookiemonstersa, the form fill-out activity includes the Webform ID in the response it returns. You'd probably be using this (or, more likely, the bulk activity extract API to get data in the Domo).

{
            "id": 2,
            "name": "Fill Out Form",
            "description": "User fills out and submits a form on web page",
            "primaryAttribute": {
                "name": "Webform ID",
                "dataType": "integer"
            },
            "attributes": [
                {
                    "name": "Form Fields",
                    "dataType": "text"
                },
                {
                    "name": "Webpage ID",
                    "dataType": "integer"
                },
                {
                    "name": "Query Parameters",
                    "dataType": "string"
                },
                {
                    "name": "Client IP Address",
                    "dataType": "string"
                },
                {
                    "name": "Referrer URL",
                    "dataType": "string"
                },
                {
                    "name": "User Agent",
                    "dataType": "string"
                },
                {
                    "name": "Program Name",
                    "dataType": "string"
                },
                {
                    "name": "Program Type",
                    "dataType": "string"
                },
                {
                    "name": "CAPTCHA Provider",
                    "dataType": "string"
                },
                {
                    "name": "CAPTCHA Raw Score",
                    "dataType": "float"
                },
                {
                    "name": "CAPTCHA Normalized Score",
                    "dataType": "string"
                }
            ]
        }

View solution in original post

2 REPLIES 2
Darshil_Shah1
Level 10 - Community Advisor + Adobe Champion

Re: Form Fills Chart Over time In Domo

@cookiemonstersa, the form fill-out activity includes the Webform ID in the response it returns. You'd probably be using this (or, more likely, the bulk activity extract API to get data in the Domo).

{
            "id": 2,
            "name": "Fill Out Form",
            "description": "User fills out and submits a form on web page",
            "primaryAttribute": {
                "name": "Webform ID",
                "dataType": "integer"
            },
            "attributes": [
                {
                    "name": "Form Fields",
                    "dataType": "text"
                },
                {
                    "name": "Webpage ID",
                    "dataType": "integer"
                },
                {
                    "name": "Query Parameters",
                    "dataType": "string"
                },
                {
                    "name": "Client IP Address",
                    "dataType": "string"
                },
                {
                    "name": "Referrer URL",
                    "dataType": "string"
                },
                {
                    "name": "User Agent",
                    "dataType": "string"
                },
                {
                    "name": "Program Name",
                    "dataType": "string"
                },
                {
                    "name": "Program Type",
                    "dataType": "string"
                },
                {
                    "name": "CAPTCHA Provider",
                    "dataType": "string"
                },
                {
                    "name": "CAPTCHA Raw Score",
                    "dataType": "float"
                },
                {
                    "name": "CAPTCHA Normalized Score",
                    "dataType": "string"
                }
            ]
        }
cookiemonstersa
Level 4

Re: Form Fills Chart Over time In Domo

Thanks! It looks like we need to pull in some more fields to segment form fills. Currently, we are not pulling webform ID