1.1 Description

 
pathhttp://www.your_website_domain.com/FeiEditor/api_v1/updateFormSubmit
methodGET/POST
illustrateThis function can get the form in the website. Usually used to query the form ID. If you need to get commit records, please use this API.
 
 

1.2 parameters

 
namemusttypedescribe
submitIdYesintThe ID of the commit record that needs to be modified can be obtained by querying the commit record API.
data
YesStringAn array in Json format, the key of the array is the id and number corresponding to the element that needs to be modified, and the value of the array is the new value that needs to be modified.
If you're using PHP, prepare the array like this:
<?php
$data = json_encode(    array(        1 => "this is a new value for 1.",        2 => "this is a new value for 2.",    )
);
?>




 
 

 

1.3 return result

 
correct result
Return format: JSON
{
   "result": true
}
Common calling errors:
1. The wrong submitId or submitId does not exist;
2. The wrong elementId is passed or the elementId does not exist.

Please use the submit record query API to obtain the above query first.