How to make a custom Object form Un protected

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • abhilash.kumar.niit
    Senior Member
    • Sep 2024
    • 132

    #1

    How to make a custom Object form Un protected

    I have a requirement to show the form in another system without login.
    i have created an object and now i want its edit/create form to be called in iframe to another system but it is asking for login which i don't want.

    how can i implement this any idea????
  • yuri
    EspoCRM product developer
    • Mar 2014
    • 9620

    #2
    There's no such an ability.

    Comment

    • abhilash.kumar.niit
      Senior Member
      • Sep 2024
      • 132

      #3
      can i make it using the custom code ?? is there any posibility?

      Comment

      • yuri
        EspoCRM product developer
        • Mar 2014
        • 9620

        #4
        The lead capture form in v9.0 does not have authentication. The problem is that metadata is not available for not authenticated visitor making it difficult to have UI elements that depend on metadata. The lead form passes only needed metadata to the frontend. There's quite a lot of work to replicate it.


        Instead, I'd recommend to have some custom static form (probably with a custom entry point) and a no-auth API endpoint to where the form will submit data.

        Comment

        • abhilash.kumar.niit
          Senior Member
          • Sep 2024
          • 132

          #5
          Thanks, i will try custom entry point.

          Comment

          Working...