POST api/v1/brands
Request Information
URI Parameters
None.
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": "3bae7fbf-cacd-474e-92ad-3bf944be9e4e",
"code": "sample string 1",
"name": "sample string 2",
"description": "sample string 3",
"urlLogo": "sample string 4",
"logoBase64": "sample string 5",
"isDeletable": true,
"creationDate": "2026-03-21T21:45:08.7012812+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-03-21T21:45:08.7012812+00:00</CreationDate> <Description>sample string 3</Description> <Id>3bae7fbf-cacd-474e-92ad-3bf944be9e4e</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.