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
NameDescriptionTypeAdditional 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

Sample:
[
  {
    "EskimoImageID": 1,
    "WebImageID": "sample string 2",
    "FileName": "sample string 3",
    "Width": 4,
    "Height": 5,
    "Created": "2024-05-03T09:09:19.1407232+01:00",
    "LastModified": "2024-05-03T09:09:19.1407232+01:00",
    "FileSize": 8,
    "AlternateText": "sample string 9"
  },
  {
    "EskimoImageID": 1,
    "WebImageID": "sample string 2",
    "FileName": "sample string 3",
    "Width": 4,
    "Height": 5,
    "Created": "2024-05-03T09:09:19.1407232+01:00",
    "LastModified": "2024-05-03T09:09:19.1407232+01:00",
    "FileSize": 8,
    "AlternateText": "sample string 9"
  }
]

application/xml, text/xml

Sample:
<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>2024-05-03T09:09:19.1407232+01:00</Created>
    <EskimoImageID>1</EskimoImageID>
    <FileName>sample string 3</FileName>
    <FileSize>8</FileSize>
    <Height>5</Height>
    <LastModified>2024-05-03T09:09:19.1407232+01:00</LastModified>
    <WebImageID>sample string 2</WebImageID>
    <Width>4</Width>
  </clsImage>
  <clsImage>
    <AlternateText>sample string 9</AlternateText>
    <Created>2024-05-03T09:09:19.1407232+01:00</Created>
    <EskimoImageID>1</EskimoImageID>
    <FileName>sample string 3</FileName>
    <FileSize>8</FileSize>
    <Height>5</Height>
    <LastModified>2024-05-03T09:09:19.1407232+01:00</LastModified>
    <WebImageID>sample string 2</WebImageID>
    <Width>4</Width>
  </clsImage>
</ArrayOfclsImage>