PUT api/Brands/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

BrandDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Name

string

Required

String length: inclusive between 0 and 255

Description

string

String length: inclusive between 0 and 255

CreatedByUserId

globally unique identifier

None.

TenantId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "a56c73f8-1100-463f-8444-ffb6619e4646",
  "Name": "sample string 2",
  "Description": "sample string 3",
  "CreatedByUserId": "b40c6e58-5742-42a9-8ac1-0616cda00925",
  "TenantId": "1f2b163c-12fb-4ce9-9de7-4ae7a3088b67"
}

application/xml, text/xml

Sample:
<BrandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Products.Models">
  <CreatedByUserId>b40c6e58-5742-42a9-8ac1-0616cda00925</CreatedByUserId>
  <Description>sample string 3</Description>
  <Id>a56c73f8-1100-463f-8444-ffb6619e4646</Id>
  <Name>sample string 2</Name>
  <TenantId>1f2b163c-12fb-4ce9-9de7-4ae7a3088b67</TenantId>
</BrandDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.