SessionInput

Artificial IntelligenceComputer VisionCRMMachine LearningNatural Language ProcessingPredictive AnalyticsSalesforce

Properties

Name Type Description
forceConfig object Configuration settings for the session.
externalSessionKey string External key to associate with the session.
View JSON Schema on GitHub

JSON Schema

salesforce-einstein-sessioninput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SessionInput",
  "title": "SessionInput",
  "type": "object",
  "properties": {
    "forceConfig": {
      "type": "object",
      "description": "Configuration settings for the session.",
      "properties": {
        "endpoint": {
          "type": "string",
          "description": "Messaging endpoint for the bot."
        }
      }
    },
    "externalSessionKey": {
      "type": "string",
      "description": "External key to associate with the session."
    }
  },
  "required": [
    "forceConfig"
  ]
}