OBJECT

IntegrationOptionType

The option of an integration

link GraphQL Schema definition

  • type IntegrationOptionType {
  • # The name of the status when the option is disabled
  • disabled_status_name: String
  • # The label of the button to enable the option
  • enable_button_label: String
  • # The url of the button to enable the option
  • enable_button_url: String
  • # The name of the status when the option is enabled
  • enabled_status_name: String
  • # List of connected members
  • erx_connected_members: [String!]
  • # The unique identifier of the option
  • id: ID!
  • # The unique identifier of the category the option belongs to
  • integration_category_id: ID
  • # Whether the option is active
  • is_active: Boolean
  • # Whether the option is pending
  • is_pending: Boolean
  • # The long description of the option
  • long_description: String
  • # The name of the option
  • name: String
  • # The short description of the option
  • short_description: String
  • # The type of the option
  • type: String
  • }