How to get all images associated with an item

Item images can be retrieved by using the following URL and specifying the item ID.

 

 Method URL
 GET  https://api.fairwarningsoftware.com/v1.1.1/item/images/[id]

 

 Status Response
 200

{
    "images" :
    [
        {
            "image" : {
                "base" : [url-base],
                "parts" : {
                    "full" : [url-addition],
                    "large" : [url-addition],
                    "medium" : [url-addition],
                    "thumb" : [url-addition]
                }
            },
            "image" : {
                "base" : [url-base],
                "parts" : {
                    "full" : [url-addition],
                    "large" : [url-addition],
                    "medium" : [url-addition],
                    "thumb" : [url-addition]
                }
            }
        }
    ]
}

401  {"error":"The API keys provided are invalid."}
403  {"error":"API keys are missing."}
500  {"error": <custom error>}

 

 Field  Type Description
images array Contains an array of image objects.
image array Contains an array of an individual image's data.
base string The base will contain the first part of the URL needed to retrieve the specified image.
parts array This will contain an array of URL parts for the different sizes of images.
full string The end of the URL to retrieve a full-sized image.
large string The end of the URL to retrieve a large-sized image. (500px x 500px)
medium string The end of the URL to retrieve a medium-sized image. (250px x 250px)
thumb string The end of the URL to retrieve a thumb-sized image. (50px x 50px)