We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maybe a misunderstanding on my side but I've tried to use:
generateUrl(url, params?, options?)
with the "options" argument, but no params without success.
I'v tried:
let redirect_url = generateUrl( '/apps/signlive/sign_document/gears_callback'', {}, { baseURL } )
and many other ways to call it. Eventualy, only this worked:
let redirect_url = generateUrl( '/apps/signlive/sign_document/gears_callback?job_uuid={signature_request_uuid}&signlive_session_id={signlive_session_id}&original_folder_url={original_folder_url}', { signature_request_uuid, signlive_session_id, original_folder_url }, { baseURL }
Hopefuly, I had url parameters to fill in. But, how would I have done if not?
Is this a bug that I couldn't pass and empty object as the params parameter?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Maybe a misunderstanding on my side but I've tried to use:
generateUrl(url, params?, options?)
with the "options" argument, but no params without success.
I'v tried:
and many other ways to call it. Eventualy, only this worked:
Hopefuly, I had url parameters to fill in. But, how would I have done if not?
Is this a bug that I couldn't pass and empty object as the params parameter?
The text was updated successfully, but these errors were encountered: