renderForm
function, there is also a renderOwnerForm
function.
You pass a url to the renderForm
function under the ownerInviteUrl
prop. This url should be a page that you manage and that utilizes the renderOwnerForm
function. When a user generates a owner invite link the returned url will have a o_code
query parameter. On your page, you will need to grab this param and pass it into renderOwnerForm
.
For example, if you passed the following url into renderForm
under the ownerInviteUrl
opt:https://my-app.com/owner-form
Then the generated url would look something like this:https://my-app.com/owner-form?o_code=owner_d97b6badb88240f35c263357b21
On your page, you would grab the o_code
and pass it into the renderOwnerForm
method of confidoOnboarding
.
disableOwnerInvite: true
option to renderForm
.