Get post meeting overview

Name: get_post_meeting_overview

Description: Get the post meeting overview, which include the summaries, the action items, content recommendations, objections, commercial topics and discovery questions.

Schema

{
  "type": "object",
  "properties": {
    "meetingId": {
      "type": "string",
      "description": "The unique id of a meeting"
    }
  },
  "required": [
    "meetingId"
  ]
}
{
  "type": "object",
  "properties": {
    "summaries": {
      "type": "array",
      "description": "A set of meeting summaries data from AIML analysis",
      "items": {
        "type": "object",
        "properties": {
          "note": {
            "type": "string",
            "description": "One of note data from the summaries."
          }
        }
      }
    },
    "actionItems": {
      "type": "array",
      "description": "A set of meeting action items from AIML analysis",
      "items": {
        "type": "object",
        "properties": {
          "actionText": {
            "type": "string",
            "description": "One of action text data from the actionItems."
          }
        }
      }
    },
    "contentRecommendations": {
      "type": "array",
      "description": "A set of meeting contents(which is content common model for Seismic standard) from AIML analysis",
      "items": {
        "type": "object",
        "properties": {}
      }
    },
    "objections": {
      "type": "array",
      "description": "A set of objections in the meeting from AIML analysis",
      "items": {
        "type": "object",
        "properties": {
          "text": {
            "type": "string",
            "description": "One of objection text data from the objections."
          }
        }
      }
    },
    "discoveryQuestions": {
      "type": "array",
      "description": "A set of discovery questions in the meeting from AIML analysis",
      "items": {
        "type": "object",
        "properties": {
          "text": {
            "type": "string",
            "description": "One of discovery question text data from the discovery questions."
          }
        }
      }
    },
    "commercialTopics": {
      "type": "array",
      "description": "A set of commercial topics in the meeting from AIML analysis",
      "items": {
        "type": "object",
        "properties": {
          "text": {
            "type": "string",
            "description": "One of commercial topic text data from the commercial topics."
          }
        }
      }
    }
  },
  "required": []
}