Update Form
POST
/forms/{handle}
const url = 'http://localhost:9000/forms/example';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"token":"example","data":{}}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url http://localhost:9000/forms/example \ --header 'Content-Type: application/json' \ --data '{ "token": "example", "data": {} }'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” handle
required
string
Request Body required
Section titled “Request Body required ” Media type application/json
object
token
string
data
required
object
key
additional properties
any
Example generated
{ "token": "example", "data": {}}Responses
Section titled “ Responses ”OK
Media type application/json
object
Example generated
{}