PUT api/Brands/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
BrandDto| Name | Description | Type | Additional 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": "48412378-4967-40c4-945b-839f77639c7b",
"Name": "sample string 2",
"Description": "sample string 3",
"CreatedByUserId": "0b35c61f-3c62-4d15-8320-44a68d683831",
"TenantId": "88375486-8302-4c3d-bb09-a18d674251d1"
}
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>0b35c61f-3c62-4d15-8320-44a68d683831</CreatedByUserId> <Description>sample string 3</Description> <Id>48412378-4967-40c4-945b-839f77639c7b</Id> <Name>sample string 2</Name> <TenantId>88375486-8302-4c3d-bb09-a18d674251d1</TenantId> </BrandDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.