GET Image?ImageId={ImageId}
Retrieve a binary image
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
ImageId |
Image identifier, retrieved by using the Track service |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
ImageName | Description | Type | Additional information |
---|---|---|---|
ImageId |
Image identifier, retrieved using the Track service and passed to the Image service |
string |
None. |
Timestamp |
Image timestamp |
date |
None. |
DocumentType |
Image document type (e.g. BOL, POD, MISC, PHOTO) |
string |
None. |
FileFormat |
File format (e.g. TIF, PDF, JPG) |
string |
None. |
Content |
Binary content of the file, retrieved using the Image service |
Collection of byte |
None. |
Response Formats
application/json, text/json
Sample:
{ "ImageId": "sample string 1", "Timestamp": "2025-01-17T12:44:24.6924369-06:00", "DocumentType": "sample string 3", "FileFormat": "sample string 4", "Content": "QEA=" }
application/xml, text/xml
Sample:
<Image xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <ImageId>sample string 1</ImageId> <Timestamp>2025-01-17T12:44:24.6924369-06:00</Timestamp> <DocumentType>sample string 3</DocumentType> <FileFormat>sample string 4</FileFormat> <Content>QEA=</Content> </Image>