Session

Artificial IntelligenceComputer VisionCRMMachine LearningNatural Language ProcessingPredictive AnalyticsSalesforce

Properties

Name Type Description
sessionId string Unique session identifier.
botId string Bot associated with the session.
status string Current status of the session.
createdDate string
lastActiveDate string
View JSON Schema on GitHub

JSON Schema

salesforce-einstein-session-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Session",
  "title": "Session",
  "type": "object",
  "properties": {
    "sessionId": {
      "type": "string",
      "description": "Unique session identifier."
    },
    "botId": {
      "type": "string",
      "description": "Bot associated with the session."
    },
    "status": {
      "type": "string",
      "enum": [
        "Active",
        "Ended",
        "Transferred"
      ],
      "description": "Current status of the session."
    },
    "createdDate": {
      "type": "string",
      "format": "date-time"
    },
    "lastActiveDate": {
      "type": "string",
      "format": "date-time"
    }
  }
}