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 have one small issue, I can't seem to figure out the json data schema when POSTing to an endpoint for entry creation. Can you please advise? (The documentation only shows a http form POST example)
{"response":{"_result":"error","message":{"_message-id":"102","value":"Entry encountered errors when saving."},"first-name":{"_label":"First Name","_type":"missing","_message-id":"301","_message":"\u2018First Name\u2019 is a required field.","value":""},"post-values":{"value":""}}}
Thanks guys!, I'm sure it is something simple.
The text was updated successfully, but these errors were encountered:
Hey guys, love the extension.
I have one small issue, I can't seem to figure out the json data schema when POSTing to an endpoint for entry creation. Can you please advise? (The documentation only shows a http form POST example)
I have already tried the following...
{"first-name": "Damien", "last-name": "Oliver", email: "[email protected]"}
{fields:{"first-name": "Damien", "last-name": "Oliver", email: "[email protected]"}}
{"fields['first-name']": "Damien", "fields['last-name']": "Oliver", "fields[email]": "[email protected]"}
{"first-name":{"value":"Damien"},"email":{"value":"[email protected]"}}
...with no luck, the response is always:
{"response":{"_result":"error","message":{"_message-id":"102","value":"Entry encountered errors when saving."},"first-name":{"_label":"First Name","_type":"missing","_message-id":"301","_message":"\u2018First Name\u2019 is a required field.","value":""},"post-values":{"value":""}}}
Thanks guys!, I'm sure it is something simple.
The text was updated successfully, but these errors were encountered: