Skip to main content

Finalising Forms

Description: To finalise a form a HTTP POST request is made to the URL with the form ID and session token.

Method: POST

URI: /forms/form_id/finalise

URI Parameters:

  • form_id: The ID of the form

Headers: Authorization: Third party based authorization header

Returns

FieldTypeDescription
MessageStringMessage relating to the update.

Example

Request
curl https://app-api.reiformslive.com.au/forms/1/finalise \
--request POST \
--header "content-type: application/json" \
--header "Authorization: Basic YTlkOWIwYItNGY4Yi1hYTQxLTI5NzZmMTcyZmEyMQ=="
Response
{
"message": "The form has been finalised"
}