PUT api/v1/Manufacturers
Request Information
URI Parameters
None.
Body Parameters
EditManufacturerRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Manufacturer | ManufacturerDTO |
None. |
Request Formats
application/json, text/json
Sample:
{
"Manufacturer": {
"Id": 1,
"Name": "sample string 2",
"CreateDate": "2025-12-06T07:11:37.4348723+03:00",
"UpdateDate": "2025-12-06T07:11:37.4348723+03:00",
"IconId": 1,
"Languages": [
{
"Id": 1,
"Language": "sample string 2",
"Name": "sample string 3"
},
{
"Id": 1,
"Language": "sample string 2",
"Name": "sample string 3"
}
]
}
}
application/xml, text/xml
Sample:
<EditManufacturerRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Parkmeters.Contracts">
<Manufacturer>
<CreateDate>2025-12-06T07:11:37.4348723+03:00</CreateDate>
<IconId>1</IconId>
<Id>1</Id>
<Languages>
<ManufacturerLangDTO>
<Id>1</Id>
<Language>sample string 2</Language>
<Name>sample string 3</Name>
</ManufacturerLangDTO>
<ManufacturerLangDTO>
<Id>1</Id>
<Language>sample string 2</Language>
<Name>sample string 3</Name>
</ManufacturerLangDTO>
</Languages>
<Name>sample string 2</Name>
<UpdateDate>2025-12-06T07:11:37.4348723+03:00</UpdateDate>
</Manufacturer>
</EditManufacturerRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.