GET 3dCartWebAPI/v1/Manufacturers/{id}


Get a Manufacturer

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Manufacturer ID

integer

Required

Body Parameters

None.


Sample Request


Please click here to download the C# Rest API Client project from GitHub.
not yet available
not yet available

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/18/2024 08:04",
    "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/18/2024 08:04",
    "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-18T08:04:59.3867095-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-18T08:04:59.3867095-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>