1.1 Description
path | http://www.your_website_domain.com/FeiEditor/api_v1/updateFormSubmit |
method | GET/POST |
illustrate | This 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
name | must | type | describe |
submitId | Yes | int | The ID of the commit record that needs to be modified can be obtained by querying the commit record API. |
data | Yes | String | An 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 } |
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.