Delete Form
/forms/{id}
Delete Form [DELETE]
Delete a form. Upon deleting the form:
- All answers on the form will be deleted.
- The form will be removed from the folder.
- The form will be removed from any associated assets.
- The form can later be recovered through a
PATCHto/forms/{id}by sending:{ "rowStatus": 1 }
Authorization: Admin, Web, Mobile
The server will respond with a confirmation object containing the additional objects this delete will modify. The delete will not be processed until it is confirmed.
Request
Body{
"confirmed": true
}
Response 412
Body{
"answersCompletedCount": 5
}
Response 200
Body{}