patch https://bolt.thena.ai/v3/forms/
This API helps you update a form.
For the fields that you need to update to a new value, pass them inside update
.
For the fields that you need to unset, pass them inside unset
, while maintaining the structure of the object. For example, if you want to unset bio
which is inside the fields
object. You need to send in an object like below.
{
"unset": {
"fields": {
"bio": {}
}
}
}