add_contents_to_meeting

Name: add_contents_to_meeting

Description: Add Seismic content to meeting

Schema

{
  "type": "object",
  "properties": {
    "meetingEngagementId": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128,
      "pattern": "^[A-Za-z0-9][A-Za-z0-9._:-]{0,127}$",
      "description": "The unique identifier of the meeting engagement."
    },
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "universalContentId": {
            "type": "string",
            "description": "The unique identifier of a Seismic content item from Library or WorkSpace. Construct this value using content details returned by seismic content related tools.\n\nFormat for Library (DocCenter) content:\n  ContentManager__{ContentType}__{ContentId}__{ContentVersionId}__{TeamSiteId}\n  Example: ContentManager__File__c8d89fb3-0f18-4c9d-9721-fda7d983fbbc__ed90a0c5-5256-4ce8-a822-4a7259e163e8__3193b16d-9c2e-4422-b3e1-a8ecb1f40a51\n\nFormat for WorkSpace content:\n  Workspace__{ContentType}__{ContentId}__{ContentVersionId}\n  Example: Workspace__File__0a584955-aea5-40b9-82a0-7310acb178d6__a85a14dc-964b-4fd3-b163-47b7474c1700\n\nField mapping from content details:\n  - ContentType \u2192 contentType\n  - ContentId \u2192 id\n  - ContentVersionId \u2192 versionId\n  - TeamSiteId \u2192 teamSiteId (Library content only)\n\nThe delimiter between segments is a double underscore (__)."
          }
        }
      }
    }
  },
  "required": [
    "meetingEngagementId",
    "items"
  ]
}
{
  "type": "object",
  "properties": {},
  "required": []
}