Manufacturers
Get a list of manufacturers.
Authorizations
Query parameters
pageintegerOptionalExample:
Page of result set.
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 a Manufacturer details.
Authorizations
Path parameters
manufacturerintegerRequiredExample:
The manufacturer ID.
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."
}
Get a list of brands belonging to a manufacturer.
Authorizations
Path parameters
manufacturerintegerRequiredExample:
The manufacturer ID.
1234
Query parameters
pageintegerOptionalExample:
Page of result set.
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 a brand details.
Authorizations
Path parameters
manufacturerintegerRequiredExample:
The manufacturer ID.
1234
brandintegerRequiredExample:
The brand ID.
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."
}
Last updated