Path parameters
The ID of the form to retrieve.
Response
The unique identifier for this form.
This will always contain form
for this endpoint.
The name of this form.
The unique handle for this form.
The template used to display this form.
The sender email address.
The recipient email address.
The carbon copy email address.
The blind carbon copy email address.
The reply to email address.
Whether the form submissions should be stored or not.
Whether the form submissions should be checked for spam or not.
The spam score given to a form submission in order to be marked as spam.
The fields for this form.
The unique identifier for the form field.
This will always contain form_field
.
The name of the form field.
The label for the form field.
The default value for the form field.
The a short description about this form field.
The order of the form field.
The placeholder value for the form field.
Whether the form field is required or not.
The type of form field.
The date and time when the form field was created.
The date and time when the form field was updated.
The date and time when the form was created.
The date and time when the form was updated.
import Blutui from 'blutui'
const blutui = new Blutui('ey....')
blutui.project('one').admin.forms.get('0195b657-82dd-718a-8092-9ea39771ec83')
{
"id": "0195b657-82dd-718a-8092-9ea39771ec83",
"object": "form",
"name": "Contact",
"handle": "contact",
"template": "forms/contact.canvas",
"email_from": null,
"email_to": null,
"email_cc": null,
"email_bcc": null,
"email_reply_to": null,
"store_submissions": true,
"detects_spam": true,
"spam_score": 65,
"fields": [],
"created_at": "2023-08-14T16:49:46+12:00",
"updated_at": "2023-08-14T16:49:46+12:00"
}