GET 3dCartWebAPI/v1/Manufacturers


Get all Manufacturers

Request Information

URI Parameters

NameDescriptionTypeAdditional information
limit

Maximum number of items that can be returned

integer

Default value is 10

offset

Starting point for the return data

integer

Default value is 1

manufacturer

Name of the Manufacturer

string

Default value is

countonly

Count the number of rows only

integer

Default value is 0

Body Parameters

None.


Sample Request



Response Information

Resource Description

Collection of Manufacturer
NameDescriptionTypeAdditional information
ManufacturerID

Primary key. Auto-incremented. database reference = manufacturer.id

integer

None.

ManufacturerName

database reference = manufacturer.manufacturer

string

String length: inclusive between 0 and 50

Logo

database reference = manufacturer.logo

string

String length: inclusive between 0 and 255

Sorting

database reference = manufacturer.sorting

integer

None.

Header

database reference = manufacturer.header

string

String length: inclusive between 0 and 65535

Website

database reference = manufacturer.website

string

String length: inclusive between 0 and 50

UserID

database reference = manufacturer.userid

string

String length: inclusive between 0 and 50

LastUpdate

database reference = manufacturer.last_update

date

None.

PageTitle

database reference = manufacturer.title

string

String length: inclusive between 0 and 150

MetaTags

database reference = manufacturer.meta

string

String length: inclusive between 0 and 65535

RedirectURL

database reference = manufacturer.link

string

String length: inclusive between 0 and 255

FileName

database reference = manufacturer.filename

string

String length: inclusive between 0 and 255

Response Formats

application/json, text/json

Sample:
[
  {
    "ManufacturerID": 1,
    "ManufacturerName": "sample string 1",
    "Logo": "sample string 2",
    "Sorting": 1,
    "Header": "sample string 3",
    "Website": "sample string 4",
    "UserID": "sample string 5",
    "LastUpdate": "04/14/2024 23:36",
    "PageTitle": "sample string 6",
    "MetaTags": "sample string 7",
    "RedirectURL": "sample string 8",
    "FileName": "sample string 9"
  },
  {
    "ManufacturerID": 1,
    "ManufacturerName": "sample string 1",
    "Logo": "sample string 2",
    "Sorting": 1,
    "Header": "sample string 3",
    "Website": "sample string 4",
    "UserID": "sample string 5",
    "LastUpdate": "04/14/2024 23:36",
    "PageTitle": "sample string 6",
    "MetaTags": "sample string 7",
    "RedirectURL": "sample string 8",
    "FileName": "sample string 9"
  }
]

application/xml, text/xml

Sample:
<ArrayOfManufacturer xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Manufacturer>
    <ManufacturerID>1</ManufacturerID>
    <ManufacturerName>sample string 1</ManufacturerName>
    <Logo>sample string 2</Logo>
    <Sorting>1</Sorting>
    <Header>sample string 3</Header>
    <Website>sample string 4</Website>
    <UserID>sample string 5</UserID>
    <LastUpdate>2024-04-14T23:36:28.3525869-04:00</LastUpdate>
    <PageTitle>sample string 6</PageTitle>
    <MetaTags>sample string 7</MetaTags>
    <RedirectURL>sample string 8</RedirectURL>
    <FileName>sample string 9</FileName>
  </Manufacturer>
  <Manufacturer>
    <ManufacturerID>1</ManufacturerID>
    <ManufacturerName>sample string 1</ManufacturerName>
    <Logo>sample string 2</Logo>
    <Sorting>1</Sorting>
    <Header>sample string 3</Header>
    <Website>sample string 4</Website>
    <UserID>sample string 5</UserID>
    <LastUpdate>2024-04-14T23:36:28.3525869-04:00</LastUpdate>
    <PageTitle>sample string 6</PageTitle>
    <MetaTags>sample string 7</MetaTags>
    <RedirectURL>sample string 8</RedirectURL>
    <FileName>sample string 9</FileName>
  </Manufacturer>
</ArrayOfManufacturer>