PUT api/v1/brands/{code}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
code

string

Required

Body Parameters

BrandDto
NameDescriptionTypeAdditional 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": "6ffc750a-47a8-4612-82a1-0c14392b82fc",
  "code": "sample string 1",
  "name": "sample string 2",
  "description": "sample string 3",
  "urlLogo": "sample string 4",
  "logoBase64": "sample string 5",
  "isDeletable": true,
  "creationDate": "2025-08-31T09:09:06.0839297+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>2025-08-31T09:09:06.0839297+00:00</CreationDate>
  <Description>sample string 3</Description>
  <Id>6ffc750a-47a8-4612-82a1-0c14392b82fc</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

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.