You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 17, 2023. It is now read-only.
When I tried to send form_field_groups with my signature request, it would always throw this cryptic error:
{"error":{"error_msg":"'form_field_group' must have fields in 'form_fields_per_document'","error_path":"form_field_groups","error_name":"bad_request"}})
I wrote to apisupport@hellosign (support ticket #19005626) and they pointed out that the request payload was not formatted correctly.
I was passing this to create_embedded_signature_request
My fix was to wrap the array in MultiJson.dump(...) because that's how the other fields were transformed (prepare_signers etc). I realize that this is a legacy issue and easy to work around, but I wanted to make it visible for other people who might be running into the same issue.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When I tried to send form_field_groups with my signature request, it would always throw this cryptic error:
I wrote to apisupport@hellosign (support ticket #19005626) and they pointed out that the request payload was not formatted correctly.
I was passing this to
create_embedded_signature_request
and this is how it was transformed to json
My fix was to wrap the array in
MultiJson.dump(...)
because that's how the other fields were transformed (prepare_signers
etc). I realize that this is a legacy issue and easy to work around, but I wanted to make it visible for other people who might be running into the same issue.The text was updated successfully, but these errors were encountered: