uploadContentUrlAboutOrganization
Submit a URL to store organizational content on the Content Server. Specify the user role to manage access and permissions effectively.
Instructions
Upload content url about the organization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
role | No | The roles of the user | |
url | Yes | The URL to upload |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"role": {
"description": "The roles of the user",
"type": "string"
},
"url": {
"description": "The URL to upload",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}