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
I just solved an issue with my code, where I was attempting to create a document with a SignHere field, and the field would not show up.
It turns out I pulled a signature field example from a different language which used camelCase for variables instead of snake_case.
This was extremely hard to pin down though because nothing errored. The python client happily took my SignHere() class definition. And if the API errored in any way during creation it was not presented to me.
I ended up having to call a bunch of other methods and try creating the tabs manually to eventually figure out it was a variable name issue.
Ideally the python client should error if required fields are not set.
The text was updated successfully, but these errors were encountered:
I just solved an issue with my code, where I was attempting to create a document with a SignHere field, and the field would not show up.
It turns out I pulled a signature field example from a different language which used camelCase for variables instead of snake_case.
This was extremely hard to pin down though because nothing errored. The python client happily took my SignHere() class definition. And if the API errored in any way during creation it was not presented to me.
I ended up having to call a bunch of other methods and try creating the tabs manually to eventually figure out it was a variable name issue.
Ideally the python client should error if required fields are not set.
The text was updated successfully, but these errors were encountered: