Admin APISubmissions

Remove submission

DELETE{handle}.blutui.com/admin/api/forms/{form_id}/submissions/{id}

Remove a submission from a form in a project.

Path parameters

idstringrequired

The ID of the form submission to remove.

Response

import Blutui from 'blutui'

const blutui = new Blutui('ey....')

blutui.project('one').admin.submissions.remove('form-id', '9cc276b2-3f30-4332-bda4-f4d2abb21d08')
JSON Response
{
  "id": "9cc276b2-3f30-4332-bda4-f4d2abb21d08",
  "object": "form_submission",
  "deleted": true
}
idstring

The unique identifier for this form submission.

objectstring

This will always contain form_submission for this endpoint.

deletedboolean

Determine if the object was successfully deleted.

Last updated on