OBJECT

ConnectorVersionParameter

Parameter for connector version

link GraphQL Schema definition

  • type ConnectorVersionParameter {
  • # The name of the parameter
  • name: String!
  • # The type of the parameter. Could be setting or authentication. See
  • # ConnectorVersionParameterType
  • type: ConnectorVersionParameterType!
  • # Is the parameter mandatory or optional
  • isMandatory: Boolean!
  • # The key of the parameter
  • key: String!
  • # The type of value. Currently, only TEXT is supported
  • valueType: String!
  • # The creation date
  • createdAt: DateTime!
  • # Get the value of the parameter
  • #
  • # Arguments
  • # websiteId: Id of the website
  • value(websiteId: LegacyId!): ConnectorVersionParameterValue
  • # Get the Connector Version of the parameter
  • connectorVersion: ConnectorVersion
  • }