INPUT_OBJECT

FormUpdateInput

Specified the fields required to update form details.

link GraphQL Schema definition

  • input FormUpdateInput {
  • # The Form ID to update.
  • formId: ID!
  • # 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
  • }