"Lead capture" feature is very useful, and I think it can be extended even further, to allow the creation of custom forms that can be filled out by anonymous users, for any entity, without lead conversion.
Create other entities than Lead using "Lead capture"
Collapse
X
-
This is a workaround (Advanced Pack extension required):
- For each separate entity (custom or system) create a separate Lead Capture. In screenshot 1, pay attention to the ID of the created Lead Capture. You need to copy it for the next step.
- Create a Workflow with Trigger type Signal (screenshot 2). Where in the Signal field specify @leadCapture.681db9c1b42d938aa, where instead of "681db9c1b42d938aa" there will be your copied ID from the previous step.
- Action 1 creates a record in the entity you need and copies the required fields from the Lead created using Lead Capture.
- Action 2 deletes the Lead created using Lead Capture:
HTML Code:$id = workflow\targetEntity\attribute('id'); record\delete('Lead', $id);
👍 1 -
This is a workaround (Advanced Pack extension required):
- For each separate entity (custom or system) create a separate Lead Capture. In screenshot 1, pay attention to the ID of the created Lead Capture. You need to copy it for the next step.
- Create a Workflow with Trigger type Signal (screenshot 2). Where in the Signal field specify @leadCapture.681db9c1b42d938aa, where instead of "681db9c1b42d938aa" there will be your copied ID from the previous step.
- Action 1 creates a record in the entity you need and copies the required fields from the Lead created using Lead Capture.
- Action 2 deletes the Lead created using Lead Capture:
HTML Code:$id = workflow\targetEntity\attribute('id'); record\delete('Lead', $id);
I tried and the lead was created in "Lead" and does not show up in the custom entity. Is there anything else that I should pay attention to please?Comment
-
Yes, I created a custom entity with Person type. How to link the "name" field to the full view like in the Leads entity please? In the Leads entity, the Name field is linkable to the full view of the record. In my custom entity, the name field is not linkable. How can I make the field linkable to full view please?Comment
Comment