GET api/v2/manufacturers?Skip={Skip}&Take={Take}&Since={Since}&Name={Name}
Get all manufacturers
Request Information
URI Parameters
| Name | Description | Type | Additional 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| Name | Description | Type | Additional 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-11-08T04:42:55.3781832-08: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-11-08T04:42:55.3781832-08:00</update-date>
</manufacturer>
</manufacturers>
application/json, text/json
Sample:
{
"manufacturers": [
{
"name": "sample string 1",
"gcp": "sample string 2",
"update-date": "2025-11-08T04:42:55.3781832-08:00",
"status": 0,
"entity-id": "sample string 4"
},
{
"name": "sample string 1",
"gcp": "sample string 2",
"update-date": "2025-11-08T04:42:55.3781832-08:00",
"status": 0,
"entity-id": "sample string 4"
}
]
}