LogoLogo
  • Erudus API
  • Change Log
  • Getting Started
    • Introduction
    • Authentication
    • Testing with Sandbox
    • Migrating from API v1
    • Responses and Error Codes
    • Other Information
  • erudus.com
  • API Reference
    • Products
  • Wholesaler Catalogs
  • Images
  • Manage Products
  • Manufacturers
  • Labels
Powered by GitBook
On this page

Images

Access product images

PreviousWholesaler CatalogsNextManage Products

Last updated 1 month ago

List Product Images

get

Returns a list of images uploaded by the Brand Owner or Wholesaler

Authorizations
Path parameters
productstringRequired

The Erudus ID of the product.

Example: 7bc42964412a4566b3daa77bd6daf275
Query parameters
wholesalerintegerOptional

Show images for wholesaler (results will include brand owner and wholesaler's images).

Example: 2
filter[wholesaler]integerOptional

Filter images by wholesaler.

Example: 2
filter[type]integerOptional

Filter images by Image Type ID.

Example: 2
sortintegerOptional

Sort images by field.

Example: 0
Responses
401Error
application/json
get
GET /v2/images/{product} HTTP/1.1
Host: api.erudus.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
401Error
{
  "message": "Unauthenticated."
}

Get Product Feature Image

get

Returns the feature image for the product. This is set by the Brand Owner.

Authorizations
Path parameters
productstringRequired

The Erudus ID of the product.

Example: 7bc42964412a4566b3daa77bd6daf275
Query parameters
wholesalerintegerOptional

Show images for wholesaler (includes brand and wholesaler's images).

Example: 2
Responses
401Error
application/json
get
GET /v2/images/{product}/feature HTTP/1.1
Host: api.erudus.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
401Error
{
  "message": "Unauthenticated."
}
  • GETList Product Images
  • GETGet Product Feature Image