Create other entities than Lead using "Lead capture"

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • goingUp
    Junior Member
    • Sep 2024
    • 18

    #1

    Create other entities than Lead using "Lead capture"

    "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.
  • victor
    Active Community Member
    • Aug 2022
    • 960

    #2
    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);
    Attached Files

    Comment

    • Nth20
      Junior Member
      • Jun 2025
      • 5

      #3
      Originally posted by victor
      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);
      Hello Victor, thank you very much for the helpful information.
      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

      • victor
        Active Community Member
        • Aug 2022
        • 960

        #4
        Send screenshots of your workflow and Lead Capture.

        Comment

        • Nth20
          Junior Member
          • Jun 2025
          • 5

          #5
          Originally posted by victor
          Send screenshots of your workflow and Lead Capture.
          Thank you very much Victor, can you please check the screenshots and help me? I am sorry that I am not good at taking the screenshots. Click image for larger version

Name:	Lead Capture 00.jpg
Views:	0
Size:	63.6 KB
ID:	119616 Click image for larger version

Name:	Lead Capture 000.jpg
Views:	0
Size:	57.7 KB
ID:	119617 Click image for larger version

Name:	Workflow00.jpg
Views:	0
Size:	78.1 KB
ID:	119618 Click image for larger version

Name:	Workflow000.jpg
Views:	0
Size:	69.4 KB
ID:	119619
          Attached Files

          Comment

          • victor
            Active Community Member
            • Aug 2022
            • 960

            #6
            You used the wrong ID:

            1. Go to your Lead Capture and copy the ID from the browser address bar:

            Click image for larger version  Name:	image.png Views:	0 Size:	39.3 KB ID:	1196402. In the Workflow you created, edit Signal.

            Click image for larger version  Name:	image.png Views:	0 Size:	70.2 KB ID:	119641

            Comment

            • Nth20
              Junior Member
              • Jun 2025
              • 5

              #7
              Thank you so much Victor and I am really sorry for my oversight. I thought the IDs are the same. Is there anyway that I can clone the Leads entity to make a custom entity please?

              Comment

              • victor
                Active Community Member
                • Aug 2022
                • 960

                #8
                Without coding skills, you are unlikely to be able to create a similar entity.
                However, you can create an entity with the Person type. It will be as similar as possible.

                Comment

                • Nth20
                  Junior Member
                  • Jun 2025
                  • 5

                  #9
                  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

                  • victor
                    Active Community Member
                    • Aug 2022
                    • 960

                    #10
                    1. In the desired Layout (for example, in List view) for your entity, hover your mouse over the name field.
                    2. Wait for the pencil icon to appear and click on it.
                    3. Check the Link option.

                    Click image for larger version  Name:	image.png Views:	0 Size:	114.5 KB ID:	119656
                    Last edited by victor; Today, 03:47 PM.

                    Comment

                    Working...