uploadContentFileAboutOrganization
Upload organizational content files to the Content Server, specifying file content, name, and user roles for secure storage and management.
Instructions
Upload content file about the organization
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| file | Yes | The file content to upload | |
| fileName | Yes | The file name | |
| role | No | The roles of the user | 
Input Schema (JSON Schema)
{
  "additionalProperties": false,
  "properties": {
    "file": {
      "description": "The file content to upload",
      "type": "string"
    },
    "fileName": {
      "description": "The file name",
      "type": "string"
    },
    "role": {
      "description": "The roles of the user",
      "type": "string"
    }
  },
  "required": [
    "file",
    "fileName"
  ],
  "type": "object"
}