DAM 26.2
| Version | 26.2 |
|---|---|
| Release Date | 22 June 2026 |
Changes
New features
-
Added direct upload endpoints that issue a temporary, writable SAS-token URL so file bytes are uploaded straight to storage instead of through the DAM API:
POST /api/{culture}/files/upload-url(CreateFileUploadUrl) — issues a writable URL for uploading a new file.POST /api/{culture}/files/replace-upload-url(CreateReplaceUploadUrl) — issues a writable URL for replacing an existing file, optionally carrying over its metadata.
See Direct upload to DAM storage for the full two-phase flow, including how to know when the uploaded file is ready. The upload helper section walks through the
IDamFileUploaderhelper from theBizzkit.Sdk.Dam.Uploadpackage, which wraps the request-URL-then-upload steps behind a single SDK method call.
Enhancements
None
Deprecations
- The
POST /api/{culture}/files/import-from-byte-dataendpoint (ImportFileFromByteData) is deprecated. It uploads file bytes through the DAM API, which is now superseded by the direct upload flow. The endpoint remains functional for backward compatibility, but new integrations should request an upload URL and use theIDamFileUploaderSDK helper instead. See Migrating from import-from-byte-data for step-by-step migration instructions.