Forms
Integration Provider | Lead | Question | Other |
---|---|---|---|
Google Forms | ✅ | Response | |
✅ | |||
Snapchat | ✅ | ||
Typeform | ✅ | Response |
Don't see the integration provider or resource you want? Let us know and we will build it out ASAP!
Lead: forms-lead
forms-lead
A lead is an individual to be pursued.
{
"address": {
"title": "Address",
"type": "object",
"description": "Primary address of the lead",
"properties": {
"primary_city": {
"title": "Primary City",
"type": "string",
"description": "The city of the primary address."
},
"primary_country": {
"title": "Primary Country",
"type": "string",
"description": "The country of the primary address."
},
"primary_postal_code": {
"title": "Primary Postal Code",
"type": "string",
"description": "The postal or ZIP code of the primary address."
},
"primary_state": {
"title": "Primary State",
"type": "string",
"description": "The state or region of the primary address."
},
"primary_street_1": {
"title": "Primary Street 1",
"type": "string",
"description": "Line 1 of the street for the primary address."
},
"primary_street_2": {
"title": "Primary Street 2",
"type": "string",
"description": "Line 2 of the street for the primary address."
}
}
},
"company": {
"title": "Company",
"type": "string"
},
"company_url": {
"title": "Company URL",
"type": "string",
"format": "uri",
},
"email_address": {
"format": "email",
"title": "Email Address",
"type": "string",
"description":"Primary email address of the lead"
},
"first_name": {
"title": "First Name",
"type": "string"
},
"last_name": {
"title": "Last Name",
"type": "string"
},
"title": {
"title": "Title",
"type": "string",
},
"phone_number": {
"title": "Phone Number",
"type": "string",
"description":"Primary phone number of the lead"
},
}
{
"address":
{
"primary_city": "New York",
"primary_country": "USA",
"primary_postal_code": "10001",
"primary_state": "NY",
"primary_street_1": "123 Main St",
"primary_street_2": "Apt 101"
},
"company": "XYZ Corporation",
"company_url": "https://endgrate.com",
"email_address": "[email protected]",
"first_name": "John",
"last_name": "Doe",
"title": "Manager",
"phone_number": "123-456-7890"
}
Question: forms-question
forms-question
A question is an inquiry directed toward the user to gather information.
{
"question": {
"title": "Question Text",
"type": "string"
},
"description": {
"title": "Description",
"type": "string"
},
"required": {
"title": "Required",
"type": "boolean"
},
}
{
"description": "This question is intended to gather information about your previous experience in customer service roles.",
"required": true,
"text": "Can you provide details about your previous customer service experience?"
}
Updated 3 months ago