Sampel pengumpulan prospek
Sampel pengumpulan prospek adalah formulir input Kartu Adaptif yang dirancang untuk mengumpulkan prospek dari siapa saja yang mungkin berhubungan dengan individu yang tertarik dengan serangkaian produk. Jangan ragu untuk mengubah pilihan untuk produk, mengingat bahwa setiap pilihan dapat memiliki teks tampilan, serta nilai internal yang akan dikeluarkan setelah seseorang mengirimkan kartu (mereka juga bisa sama seperti yang kami tunjukkan di blok kode sampel).
Input/Output dan catatan:
Nama Token Dinamis | Teks Tempat Penampung | Catatan |
---|---|---|
Titel | Tampilkan teks | |
acInstruksi | Tampilkan teks | |
acLeadFName | {firstName} | Output respons |
acLeadLName | {lastName} | Output respons |
acLeadEmail | {emailAddress} | Output respons |
acLeadPrimaryPhone | {primaryPhone10digits} | Output respons |
acLeadProductInterest | {productInterests} | Output respons Sebagai nilai multi-pilih, di mana setiap pilihan akan dipisahkan dengan koma. |
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.0",
"body": [
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"width": 2,
"items": [
{
"type": "TextBlock",
"text": "Lead Notification",
"weight": "Bolder",
"id": "Title",
"size": "ExtraLarge"
},
{
"type": "TextBlock",
"text": "Please fill out a single form for each individual expressing interest in our products. ",
"isSubtle": true,
"wrap": true,
"id": "acInstructions",
"size": "Large"
}
]
}
]
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Potential Customer FIRST NAME",
"wrap": true,
"size": "Medium"
}
]
},
{
"type": "Input.Text",
"id": "acLeadFName",
"placeholder": "{firstName}"
},
{
"type": "TextBlock",
"text": "Potential Customer LAST NAME",
"wrap": true
},
{
"type": "Input.Text",
"id": "acLeadLName",
"placeholder": "{lastName}"
},
{
"type": "TextBlock",
"text": "Corporate email",
"wrap": true
},
{
"type": "Input.Text",
"id": "acLeadEmail",
"placeholder": "{emailAddress}",
"style": "Email"
},
{
"type": "TextBlock",
"text": "Business Phone Number"
},
{
"type": "Input.Text",
"id": "acLeadPrimaryPhone",
"placeholder": "{primaryPhone10digits}",
"style": "Tel"
},
{
"type": "RichTextBlock",
"inlines": [
{
"type": "TextRun",
"text": "{productInterests}"
}
]
},
{
"type": "Input.ChoiceSet",
"placeholder": "Placeholder text",
"choices": [
{
"title": "Office 365",
"value": "Office 365"
},
{
"title": "Dynamics 365",
"value": "Dynamics 365"
},
{
"title": "Azure Services",
"value": "Azure Services"
},
{
"title": "Power Platform",
"value": "Power Platform"
}
],
"style": "expanded",
"id": "acLeadProductInterest",
"isMultiSelect": true
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Submit"
}
]
}