Body parameters

namestringrequired

The name of this form.

handlestringrequired

The unique handle for this form.

templatestringrequired

The template used to display this form.

email_fromstring

The sender email address.

email_tostring

The recipient email address.

store_submissionsboolean

Whether the form submissions should be stored or not.

detects_spamboolean

Whether the form submissions should be checked for spam or not.

spam_scorenumber

The spam score given to a form submission in order to be marked as spam.

Response

idstring

The unique identifier for this form.

objectstring

This will always contain form for this endpoint.

namestring

The name of this form.

handlestring

The unique handle for this form.

templatestring

The template used to display this form.

email_fromstring

The sender email address.

email_tostring

The recipient email address.

email_ccstring

The carbon copy email address.

email_bccstring

The blind carbon copy email address.

email_reply_tostring

The reply to email address.

store_submissionsboolean

Whether the form submissions should be stored or not.

detects_spamboolean

Whether the form submissions should be checked for spam or not.

spam_scorenumber

The spam score given to a form submission in order to be marked as spam.

fieldsarray

The fields for this form.

fields.*.idstring

The unique identifier for the form field.

fields.*.objectstring

This will always contain form_field.

fields.*.namestring

The name of the form field.

fields.*.labelstring

The label for the form field.

fields.*.default_valuestring | null

The default value for the form field.

fields.*.help_textstring | null

The a short description about this form field.

fields.*.ordernumber

The order of the form field.

fields.*.placeholderstring | null

The placeholder value for the form field.

fields.*.requiredstring

Whether the form field is required or not.

fields.*.typestring

The type of form field.

fields.*.created_atstring

The date and time when the form field was created.

fields.*.updated_atstring

The date and time when the form field was updated.

created_atstring

The date and time when the form was created.

updated_atstring

The date and time when the form was updated.

import Blutui from 'blutui'

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

blutui.project('one').admin.forms.create({
  name: 'Contact',
  handle: 'contact',
  template: 'forms/contact.canvas'
})
Response
{
  "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"
}

Was this helpful?