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

Manufacturers

PreviousManage ProductsNextLabels

Last updated 1 month ago

List Manufacturers

get

Get a list of manufacturers.

Authorizations
Query parameters
pageintegerOptional

Page of result set.

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

Get Manufacturer

get

Get a Manufacturer details.

Authorizations
Path parameters
manufacturerintegerRequired

The manufacturer ID.

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

List Brands

get

Get a list of brands belonging to a manufacturer.

Authorizations
Path parameters
manufacturerintegerRequired

The manufacturer ID.

Example: 1234
Query parameters
pageintegerOptional

Page of result set.

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

Get Brand

get

Get a brand details.

Authorizations
Path parameters
manufacturerintegerRequired

The manufacturer ID.

Example: 1234
brandintegerRequired

The brand ID.

Example: 1234
Responses
401Error
application/json
get
GET /v2/manufacturers/{manufacturer}/brands/{brand} HTTP/1.1
Host: api.erudus.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
401Error
{
  "message": "Unauthenticated."
}
  • GETList Manufacturers
  • GETGet Manufacturer
  • GETList Brands
  • GETGet Brand