$version
Functionality
Definition
The $version
parameter is used to specify the version number of an image returned by the server. This helps bypass the browser's cache, ensuring that the most recent version of the image is retrieved.
Syntax
To retrieve a specific version of an image, use the following syntax:
GET /rest/{{dataClass}}({{id}})/{{imageAttribute}}?$version={{versionNumber}}&$imageformat={{imageFormat}}&$expand={{imageAttribute}}
Detailed Behavior
Ensuring Correct Image Retrieval
The $version
parameter helps to avoid issues with browser caching by specifying the version number of the image. When the version number is included in the request, the server ensures that the latest version of the image is returned, even if the image has been updated.
Server-Modified Version Value
The server modifies the value of the image's version parameter whenever the image is updated. This ensures that clients always receive the most up-to-date version of the image.
Combining with Other Parameters
The $version
parameter can be combined with other parameters to manage image versioning effectively:
$imageformat: Define the image format while specifying the version to ensure you retrieve the correct version in the desired format.
$expand: Expand the image attribute fully while specifying the version to ensure you retrieve the correct version of the image.
$filter: Narrow down the dataset before retrieving the image with the specified version.
$orderby: Sort the dataset before retrieving the image with the specified version.
$top/$limit and $skip: Navigate through the dataset and limit the number of records before retrieving the image with the specified version.
$attributes: Specify which attributes to include in the response along with the image of the specified version.
$method=entityset: Create an entity set while specifying the image version to ensure the correct version of the image is included.
$savedfilter: Apply a saved filter to the dataset before retrieving the image with the specified version.
$savedorderby: Apply a saved sorting order to the dataset before retrieving the image with the specified version.
$lock: Lock or unlock entities while specifying the version of the image to ensure the operation applies to the correct version.
$distinct: Retrieve distinct values from the dataset before specifying the image version to ensure the correct version of distinct images.
Use Cases
Retrieving an Image with a Specific Version
Request:
To retrieve an image in JPEG format with a version number of 3, use the following request:
GET /rest/Employee(1)/photo?$imageformat=jpeg&$version=3&$expand=photo
Response:
The server returns the image in JPEG format with the specified version.
{
"photo": {
"__KEY": "1",
"__STAMP": 3,
"uri": "/rest/Employee(1)/photo?$imageformat=jpeg&$version=3&$expand=photo",
"__deferred": {
"uri": "/rest/Employee(1)/photo?$imageformat=jpeg&$version=3&$expand=photo"
}
}
}
If the image has been updated and the version number has changed, use the new version number in the request to ensure you retrieve the latest image:
GET /rest/Employee(1)/photo?$imageformat=jpeg&$version=4&$expand=photo
Best Practices
Always Use $version: To avoid caching issues, always use the
$version
parameter when retrieving images.Combine with $imageformat and $expand: For optimal results, combine
$version
with$imageformat
and$expand
to specify the desired image format and ensure the full image is retrieved.Monitor Version Changes: Keep track of version changes to ensure that clients are always retrieving the most recent version of the image.