GET api/Images/AllNew
Return a batch of image class objects (max 10,000 at a time). Rather than specifying a date/time where images have been added/modified since, this call returns all images that have not been flagged as received. Images can be flagged as received by calling the api/Images/UpdateCartIDs endpoint.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of EskimoClassLibraries.clsImage| Name | Description | Type | Additional information | 
|---|---|---|---|
| EskimoImageID | 
                         The numeric ID of the Image as generated from Eskimo  | 
                    integer | 
                                 Required  | 
                
| WebImageID | 
                         The ID of the image as known by the cart  | 
                    string | 
                             None.  | 
                
| FileName | 
                         The name of the file when it was imported into Eskimo  | 
                    string | 
                                 Required  | 
                
| Width | 
                         The width of the image in pixels  | 
                    integer | 
                                 Required  | 
                
| Height | 
                         The height of the image in pixels  | 
                    integer | 
                                 Required  | 
                
| Created | 
                         The date that the image was added in Eskimo  | 
                    date | 
                             None.  | 
                
| LastModified | 
                         The date that the image was replaced or amended in Eskimo.  | 
                    date | 
                             None.  | 
                
| FileSize | 
                         The size of the image in Bytes  | 
                    integer | 
                                 Required  | 
                
| AlternateText | 
                         Alternate Text for an image as used here: http://www.w3schools.com/tags/att_img_alt.asp  | 
                    string | 
                             None.  | 
                
Response Formats
application/json, text/json
[
  {
    "EskimoImageID": 1,
    "WebImageID": "sample string 2",
    "FileName": "sample string 3",
    "Width": 4,
    "Height": 5,
    "Created": "2025-11-03T20:58:32.4833284+00:00",
    "LastModified": "2025-11-03T20:58:32.4833284+00:00",
    "FileSize": 8,
    "AlternateText": "sample string 9"
  },
  {
    "EskimoImageID": 1,
    "WebImageID": "sample string 2",
    "FileName": "sample string 3",
    "Width": 4,
    "Height": 5,
    "Created": "2025-11-03T20:58:32.4833284+00:00",
    "LastModified": "2025-11-03T20:58:32.4833284+00:00",
    "FileSize": 8,
    "AlternateText": "sample string 9"
  }
]
        application/xml, text/xml
<ArrayOfclsImage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EskimoClassLibraries">
  <clsImage>
    <AlternateText>sample string 9</AlternateText>
    <Created>2025-11-03T20:58:32.4833284+00:00</Created>
    <EskimoImageID>1</EskimoImageID>
    <FileName>sample string 3</FileName>
    <FileSize>8</FileSize>
    <Height>5</Height>
    <LastModified>2025-11-03T20:58:32.4833284+00:00</LastModified>
    <WebImageID>sample string 2</WebImageID>
    <Width>4</Width>
  </clsImage>
  <clsImage>
    <AlternateText>sample string 9</AlternateText>
    <Created>2025-11-03T20:58:32.4833284+00:00</Created>
    <EskimoImageID>1</EskimoImageID>
    <FileName>sample string 3</FileName>
    <FileSize>8</FileSize>
    <Height>5</Height>
    <LastModified>2025-11-03T20:58:32.4833284+00:00</LastModified>
    <WebImageID>sample string 2</WebImageID>
    <Width>4</Width>
  </clsImage>
</ArrayOfclsImage>