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 endpoint |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Image| Name | Description | Type | Additional information |
|---|---|---|---|
| ImageId |
Image identifier, retrieved using the /Track endpoint and passed to the /Image endpoint |
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 and point |
Collection of byte |
None. |
Response Formats
application/json, text/json
Sample:
{
"ImageId": "sample string 1",
"Timestamp": "2025-11-04T07:34:42.542283-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-11-04T07:34:42.542283-06:00</Timestamp> <DocumentType>sample string 3</DocumentType> <FileFormat>sample string 4</FileFormat> <Content>QEA=</Content> </Image>