INPUT_OBJECT

FormCreateInput

Specified fields required to create form.

link GraphQL Schema definition

  • input FormCreateInput {
  • # A URL pointing to the form avatar.
  • avatar: URL
  • # The user’s form page title.
  • pageTitle: String
  • # The user’s form title.
  • title: String
  • # The user’s form description visible to contacts.
  • description: String
  • # The user’s custom message after form submit.
  • customSubmitMessage: String
  • # Indicate if 'OptIn' is visible.
  • showOptIn: Boolean!
  • # Custom CSS style provided by user to improve basic form design.
  • customCss: String
  • # A URL to redirect after successful submit.
  • redirectUrl: URL
  • # List of optional fields to include.
  • optionalFields: [FormOptionalField!]
  • }