uploadAsset
Add new assets to Adobe Experience Manager DAM by specifying parent path, file name, content, and optional metadata for organized storage and management.
Instructions
Upload a new asset to AEM DAM
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fileContent | Yes | ||
fileName | Yes | ||
metadata | No | ||
mimeType | No | ||
parentPath | Yes |
Input Schema (JSON Schema)
{
"properties": {
"fileContent": {
"type": "string"
},
"fileName": {
"type": "string"
},
"metadata": {
"type": "object"
},
"mimeType": {
"type": "string"
},
"parentPath": {
"type": "string"
}
},
"required": [
"parentPath",
"fileName",
"fileContent"
],
"type": "object"
}