This endpoint returns a list of image metadata, similar to the embedded images in the GET imagery endpoint.
It supports filtering by:
parent entities name or ID (workspaceId, imageTypeName etc),
images uploaded in the past specified number of days (uploadedSince),
images updated in the past specified number of days (updatedSince),
whether image is deleted (deleted).
This endpoint has been created to better serve image based queries that are currently able to be performed via the GET imagery endpoint such as finding recently uploaded or updated images
Added a new /dataset/:datasetId endpoint to retrieve a dataset by ID
Added workspaceId parameter to the GET collection endpoint
Added the ability to query the GET imagery endpoint by deleted status
Added the ability to query the GET imagery endpoint by imageryID directly.
Image URLs returned from GET imagery have been changed to Imago URLs rather than direct Azure URLs.
GET Image endpoint has been updated to return a 302 redirect to download the image directly from the underlying storage where possible.
Previously, images were downloaded to the Imago Server to be returned as a 200 response containing the image data. This still occurs if you request to resize the image using the height and/or width parameters.
The Content-Type header from the underlying storage contains 'application/octet-stream' instead of the mime type of the image, e.g. 'image/jpeg' or 'image/png'.
Updated the GET imagery and GET collection endpoints to include pagination information in the response.
The response now includes a meta object with limit and offset fields.
The limit field specifies the maximum number of items to return. This field is optional and will not be returned if set to 0 or not provided. If a default limit is applied, the value will be returned in this field.
The offset field specifies the number of items to skip before starting to collect the result set.