images.md

Images

Filter Images

Authentication

Requires a valid API key in the X-API-KEY header.

Status field values

Examples

GET /images?$filter=fileType eq 'jpg' GET /images?$filter=status eq 'Ok' GET /images?$filter=fileType eq 'png' and status eq 'Ok' GET /images?$filter=status in ('Ok', 'Re') GET /images?$filter=contains(reference, 'product') GET /images?$orderby=createdOn desc GET /images?$filter=fileType ne 'gif'&$orderby=numLinks desc&$skip=0&$top=50

Error Responses

Get Image

Authentication

Requires a valid API key in the X-API-KEY header.

Example

GET /images(product-main-front.jpg) X-API-KEY: your-api-key-here

Response (200 OK)

json { "id": 42, "reference": "product-main-front.jpg", "numLinks": 3, "status": "Ok", "modifiedOn": "2024-04-05T08:44:33", "fileType": "png", "createdOn": "2024-04-05T08:44:33", "tags": ["animales", "mascotas"], "originalUrl": "https://cdn.example.com/product-main-front.jpg", "thumbnailUrl": "https://cdn.example.com/perrito-simpatico_TH.png", "thumbnailMediumUrl": "https://cdn.example.com/perrito-simpatico_THM.png", "thumbnailPreviewUrl": "https://cdn.example.com/perrito-simpatico_THP.png", "width": 800, "height": 600, "sizeInBytes": 102400 }

Error Responses

Delete Image

Authentication

Requires a valid API key in the X-API-KEY header.

Example

DELETE /images(product-main-front.jpg) X-API-KEY: your-api-key-here

Error Responses