GraphQL INPUT_OBJECT

UpdateFollowUpInput

Input for follow-up update. A follow-up is a reminder about open product and purchase issues.

link Definition

  • input UpdateFollowUpInput {
  • # Unique ID of the follow-up.
  • id: Int!
  • # Date and time when you would like the reminder to activate.
  • dateTime: DateTime
  • # Unique ID of the department for whom the follow-up is intended.
  • departmentId: Int
  • # Reason for the follow-up.
  • followUpReason: FollowUpReasonEnum
  • # Set to true if the follow-up is finished.
  • isDone: Boolean
  • # Additional information about the follow-up.
  • notes: String
  • # Unique ID of the office for whom the follow-up is intended.
  • officeId: Int
  • # Set to true to display a visual reminder, such as a pop-up, for the follow-up.
  • showReminder: Boolean
  • # Subject line for the follow-up.
  • subject: String
  • # Unique ID of the user for whom the follow-up is intended.
  • userId: Int
  • }

link Required by