Delete a form by its id
curl --request DELETE \
--url https://api.helpyousponsor.com/v1/admin/forms/{hysform_id} \
--header 'Authorization: Bearer <token>'
{
"message": "Successfully Deleted Form"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
ID of the form to delete
Form successfully deleted
The response is of type object
.
curl --request DELETE \
--url https://api.helpyousponsor.com/v1/admin/forms/{hysform_id} \
--header 'Authorization: Bearer <token>'
{
"message": "Successfully Deleted Form"
}