OBJECT

Form

Represents user’s form.

link GraphQL Schema definition

  • type Form implements Node {
  • # Hashed value of user’s form.
  • hashId: String!
  • # URL pointing to the form avatar.
  • avatar: URL
  • # Represents user’s form domain.
  • domain: String
  • # 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 a custom Terms of Service is visible.
  • showOptIn: Boolean!
  • # List of optional form field names.
  • optionalFields: [String!]!
  • # Custom CSS styles provided by the user to improve basic form design.
  • customCss: String
  • # URL to redirect to after successful submit.
  • redirectUrl: URL
  • # Indicate if form is default.
  • default: Boolean!
  • # Indicate if form is enabled.
  • enabled: Boolean!
  • # Globally unique identifier.
  • id: ID!
  • }