Nuix · Schema

IngestibleMailStore

Schema for IngestibleMailStore in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
protocol string Mailstore protocol, supported values: pop, pops, imap, imaps, gwta.
host string The host server IP or hostname.
port integer The port number.
username string The username for the mail store.
password string The password.
View JSON Schema on GitHub

JSON Schema

nuix-rest-ingestiblemailstore.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nuix/refs/heads/main/json-schema/nuix-rest-ingestiblemailstore.json",
  "title": "IngestibleMailStore",
  "description": "Schema for IngestibleMailStore in Nuix REST API",
  "type": "object",
  "properties": {
    "protocol": {
      "type": "string",
      "description": "Mailstore protocol, supported values: pop, pops, imap, imaps, gwta."
    },
    "host": {
      "type": "string",
      "description": "The host server IP or hostname."
    },
    "port": {
      "type": "integer",
      "description": "The port number.",
      "format": "int32"
    },
    "username": {
      "type": "string",
      "description": "The username for the mail store."
    },
    "password": {
      "type": "string",
      "description": "The password."
    }
  }
}