DAM 26.3
| Version | 26.3 |
|---|---|
| Release Date | 15 July 2026 |
Changes
New features
- Added stable endpoints for managing resource images, so that resource images can be created and retrieved through the API instead of only through the DAM UI:
GET /api/_/resource-images(ListResourceImages) — returns all resource images with their file name and in-use status.POST /api/_/resource-images(CreateResourceImage) — creates a resource image from a file, with an optional cropping and transformation function.PUT /api/_/resource-images/{id}(UpdateResourceImage) — renames an existing resource image.DELETE /api/_/resource-images/{id}(DeleteResourceImage) — deletes an existing resource image. Returns 409 if the resource image is currently used by a transformation function.
Enhancements
None
Deprecations
- The resource image endpoints in the preview API are deprecated. Now that these endpoints are available in the stable API, they will be removed from the preview API in a future release. Update any integrations to use the stable
/api/_/resource-imagesendpoints instead.