Issue with "JotForm API Call" when editing a question

Hi everyone,

I’m trying to edit a question in a JotForm form using the “JotForm: make an API Call” module in Make, but I keep getting an error.

  • My API Key has all permissions.
  • Other API calls to JotForm from Make work fine (e.g., retrieving form responses, cloning forms, etc.).
  • The issue seems to be with the body format when trying to edit a question.

I’ve tried several configurations in the module, but I can’t find the correct one. Has anyone successfully done this? Could you share an example of the correct body format that Make will accept?

Thanks in advance!

Hi @suaelh

According to the API docs, the key of the text parameter should be question[text], not text. I imported their curl request example into Postman, and it looks like this.


I suggest updating the key to a question[text] and testing the request. If it doesn’t work, replace the JSON payload with the x-www-form-urlencoded payload as on the screenshot above (Content-Type: application/x-www-form-urlencoded).

1 Like

Hi,

Thank you for your help! I was able to get it working using the x-www-form-urlencoded format as you suggested.

2 Likes