AssetUploadResponse

Response containing the upload URI and asset ID

CreativeDesignGraphicsPhotographyVideo

Properties

Name Type Description
assetID string Asset ID to reference in subsequent operations
uploadUri string Pre-signed URI to PUT the file content to
View JSON Schema on GitHub

JSON Schema

adobe-creative-suite-assetuploadresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AssetUploadResponse",
  "title": "AssetUploadResponse",
  "type": "object",
  "description": "Response containing the upload URI and asset ID",
  "properties": {
    "assetID": {
      "type": "string",
      "description": "Asset ID to reference in subsequent operations",
      "example": "urn:aaid:AS:UE1:23c30ee0-2e4d-46d6-87f2-087832fca718"
    },
    "uploadUri": {
      "type": "string",
      "description": "Pre-signed URI to PUT the file content to",
      "example": "https://dcplatformstorageservice-us-east-1.s3-accelerate.amazonaws.com/..."
    }
  }
}