What is the secure way to initialize and clear an API connector call?
Bubble docs say:
First part:
What I understand is: everything included in the call during initialization is publicly visible, so initialization should be done with “dummy data”. Does this include parameters marked as private during initialization? What does the API schema include specifically? How can I see it?
Second part:
I came across the term “initialization clearing” which I believe means erasing the parameters values after intialization. If the API schema already contains the parameters values that were set during intialization, what is the use of this clearing? Is it just to not have any value included by default in the calls but not a security measure?
Secondly, the parameters that you set in the API connector while initialising are visible to the client only if they are not marked as private. This means that all those values will be visible including your endpoint too