INPUT_OBJECT

FindingShareFindingsInput

link GraphQL Schema definition

  • input FindingShareFindingsInput {
  • # A list of finding ID(s) that will be shared. Max number of finding that could be
  • # shared in a single request is 100.
  • findingId: [String!]!
  • # A human-readable message that will be shared alongside the findings
  • message: String
  • # Flag to indicate if all finding(s) should be shared as a single message using
  • # the existing Integration specified.
  • # If set to FALSE and more than 1 finding IDs are specified, each finding will be
  • # sent in its own separate message.
  • # Not all integrations methods support bulk sharing.
  • # If the integration method doesn't support bulk share, the 'findingId' must be a
  • # list with a single value.
  • shareAsBulk: Boolean!
  • # Notification Target Details to use for sending findings
  • target: FindingNotificationTargetInput!
  • }