Path parameters

idstringrequired

The ID of the form submission to remove.

Response

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.

import Blutui from 'blutui'

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

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

Was this helpful?