OBJECT

SecurityIntegrationMethodInfo

Describes a security integration method

link GraphQL Schema definition

  • type SecurityIntegrationMethodInfo implements Node {
  • # Categories is a list of intended use cases for the method
  • categories: [SecurityIntegrationCategory!]
  • # Node-compatible opaque global identifier
  • id: ID!
  • # Lists the kinds events/messages supported by the method
  • kinds: [SecurityIntegrationKind!]
  • # Integration method
  • method: SecurityIntegrationMethod!
  • # The list of properties that an integration of this method type requires
  • properties: [String!]
  • # RequiresAddress shows whether integrations of this method type need an address
  • # to be passed in order to work.
  • # Examples of address are email address, Slack channel, etc. Relates to the
  • # address field of requests.
  • requiresAddress: Boolean
  • }