Path parameters

idstringrequired

The ID of the form submission to retrieve.

Response

idstring

The unique identifier for this form submission.

objectstring

This will always contain form_submission for this endpoint.

bodyobject

The form submission body. This is the response of someone who submitted the form submission.

formstring | object

The ID of the form this submission belongs to.

is_spamboolean

Whether the form submission was flagged as spam or not.

created_atstring

The date and time when the submission was created.

updated_atstring

The date and time when the submission was updated.

import Blutui from 'blutui'

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

blutui.project('one').admin.submissions.get('form-id', '9cc276b2-3f30-4332-bda4-f4d2abb21d08')
Response
{
  "id": "9cc276b2-3f30-4332-bda4-f4d2abb21d08",
  "object": "form_submission",
  "body": {
    "name": "John Doe",
    "email": "john@blutui.test"
  },
  "form": "99c64885-937e-4538-8a2b-b67ee1f55778",
  "is_spam": false,
  "created_at": "2024-08-14T11:04:49+12:00",
  "updated_at": "2024-08-14T11:04:49+12:00"
}

Was this helpful?