Skip to main content

Update Form Values

Description: To update the values of a form, a HTTP PUT request is made to the URL with the form ID and session token.

Method: PUT

URI: /forms/form_id/save

URI Parameters:

  • form_id: The ID of the form.

Parameters

  • value name: A value in the form.

Headers: Authorization: Third party based authorization headerrty based authorization header

Returns

FieldTypeDescription
MessageStringMessage relating to the update.

Example

Request
curl https://app-api.reiformslive.com.au/forms/1/save \
--request PUT \
--header "content-type: application/json" \
--header "Authorization: Basic YTlkOWIwYItNGY4Yi1hYTQxLTI5NzZmMTcyZmEyMQ==" \
--data '{
"example_field":"new value",
"example_field2":"new value",
...
}'
Response
{
"message": "The form has been saved."
}