GET api/v2/manufacturers/{id}
Get manufacturer by unique identificator
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Manufacturer unique identificator |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
ManufacturerDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| name |
An name of manufacturer |
string |
None. |
| company-prefix |
Company prefix |
string |
None. |
| description | string |
None. |
|
| image-uri |
Image URI |
string |
None. |
| update-date |
Update date (sync) |
date |
None. |
| models |
Models associated with this manufacturer |
Collection of ModelSimple |
None. |
| status |
Status (active or not) |
TagvueEntityStatus |
None. |
| entity-id |
Identifying entity-id of the entity, this is expected to be unique |
string |
None. |
Response Formats
application/xml, text/xml
Sample:
<manufacturer entity-id="sample string 6" xmlns="urn:tagvue:am">
<status>inactive</status>
<name>sample string 1</name>
<company-prefix>sample string 2</company-prefix>
<description>sample string 3</description>
<image-uri>sample string 4</image-uri>
<update-date>2025-11-08T04:42:14.5529123-08:00</update-date>
<models>
<model entity-id="sample string 3">
<name>sample string 1</name>
<code>sample string 2</code>
</model>
<model entity-id="sample string 3">
<name>sample string 1</name>
<code>sample string 2</code>
</model>
</models>
</manufacturer>
application/json, text/json
Sample:
{
"name": "sample string 1",
"company-prefix": "sample string 2",
"description": "sample string 3",
"image-uri": "sample string 4",
"update-date": "2025-11-08T04:42:14.5529123-08:00",
"models": [
{
"name": "sample string 1",
"code": "sample string 2",
"entity-id": "sample string 3"
},
{
"name": "sample string 1",
"code": "sample string 2",
"entity-id": "sample string 3"
}
],
"status": 0,
"entity-id": "sample string 6"
}