PUT api/v1/brands/{code}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| code | string |
Required |
Body Parameters
BrandDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Code | string |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| UrlLogo | string |
None. |
|
| LogoBase64 | string |
None. |
|
| IsDeletable | boolean |
None. |
|
| CreationDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "85347acf-e206-4daa-9c91-01aa0e377370",
"code": "sample string 1",
"name": "sample string 2",
"description": "sample string 3",
"urlLogo": "sample string 4",
"logoBase64": "sample string 5",
"isDeletable": true,
"creationDate": "2026-04-28T00:10:58.5765721+00:00"
}
application/xml, text/xml
Sample:
<BrandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Dtos"> <Code>sample string 1</Code> <CreationDate>2026-04-28T00:10:58.5765721+00:00</CreationDate> <Description>sample string 3</Description> <Id>85347acf-e206-4daa-9c91-01aa0e377370</Id> <IsDeletable>true</IsDeletable> <LogoBase64>sample string 5</LogoBase64> <Name>sample string 2</Name> <UrlLogo>sample string 4</UrlLogo> </BrandDto>
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.