GET api/v2/manufacturers?Skip={Skip}&Take={Take}&Since={Since}&Name={Name}

Get all manufacturers

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Skip

Number of items you want to skip in the search (optional)

integer

None.

Take

Number of items to return in the result set of the search operation (optional)

integer

None.

Since

Return only items which have Update-Date greater then (optional)

date

None.

Name

Filter by entity name (if applicable)

string

None.

Body Parameters

None.

Response Information

Resource Description

ManufacturerList
NameDescriptionTypeAdditional information
manufacturers

Manufacturer collection

Collection of ManufacturerOverview

None.

Response Formats

application/xml, text/xml

Sample:
<manufacturers xmlns="urn:tagvue:am">
  <manufacturer entity-id="sample string 4">
    <status>inactive</status>
    <name>sample string 1</name>
    <gcp>sample string 2</gcp>
    <update-date>2025-05-30T20:12:24.7031368-07:00</update-date>
  </manufacturer>
  <manufacturer entity-id="sample string 4">
    <status>inactive</status>
    <name>sample string 1</name>
    <gcp>sample string 2</gcp>
    <update-date>2025-05-30T20:12:24.7031368-07:00</update-date>
  </manufacturer>
</manufacturers>

application/json, text/json

Sample:
{
  "manufacturers": [
    {
      "name": "sample string 1",
      "gcp": "sample string 2",
      "update-date": "2025-05-30T20:12:24.7031368-07:00",
      "status": 0,
      "entity-id": "sample string 4"
    },
    {
      "name": "sample string 1",
      "gcp": "sample string 2",
      "update-date": "2025-05-30T20:12:24.7031368-07:00",
      "status": 0,
      "entity-id": "sample string 4"
    }
  ]
}