POST api/BrandType/Update

Request Information

URI Parameters

None.

Body Parameters

BrandTypeModel
NameDescriptionTypeAdditional information
ID

integer

None.

Name

string

Required

Description

string

None.

BrandID

integer

Required

Brand

string

None.

CreatedAt

date

None.

UpdatedAt

date

None.

CreatedByUserID

integer

None.

IsActive

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Name": "sample string 2",
  "Description": "sample string 3",
  "BrandID": 1,
  "Brand": "sample string 4",
  "CreatedAt": "2025-01-22T21:01:24.7363992-06:00",
  "UpdatedAt": "2025-01-22T21:01:24.7363992-06:00",
  "CreatedByUserID": 1,
  "IsActive": true
}

application/xml, text/xml

Sample:
<BrandTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">
  <Brand>sample string 4</Brand>
  <BrandID>1</BrandID>
  <CreatedAt>2025-01-22T21:01:24.7363992-06:00</CreatedAt>
  <CreatedByUserID>1</CreatedByUserID>
  <Description>sample string 3</Description>
  <ID>1</ID>
  <IsActive>true</IsActive>
  <Name>sample string 2</Name>
  <UpdatedAt>2025-01-22T21:01:24.7363992-06:00</UpdatedAt>
</BrandTypeModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BrandTypeResponse
NameDescriptionTypeAdditional information
BrandType

BrandTypeModel

None.

ResponseCode

integer

None.

ResponseText

string

None.

Response Formats

application/json, text/json

Sample:
{
  "BrandType": {
    "ID": 1,
    "Name": "sample string 2",
    "Description": "sample string 3",
    "BrandID": 1,
    "Brand": "sample string 4",
    "CreatedAt": "2025-01-22T21:01:24.7363992-06:00",
    "UpdatedAt": "2025-01-22T21:01:24.7363992-06:00",
    "CreatedByUserID": 1,
    "IsActive": true
  },
  "ResponseCode": 1,
  "ResponseText": "sample string 2"
}

application/xml, text/xml

Sample:
<BrandTypeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.Response">
  <ResponseCode xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">1</ResponseCode>
  <ResponseText xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">sample string 2</ResponseText>
  <BrandType xmlns:d2p1="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">
    <d2p1:Brand>sample string 4</d2p1:Brand>
    <d2p1:BrandID>1</d2p1:BrandID>
    <d2p1:CreatedAt>2025-01-22T21:01:24.7363992-06:00</d2p1:CreatedAt>
    <d2p1:CreatedByUserID>1</d2p1:CreatedByUserID>
    <d2p1:Description>sample string 3</d2p1:Description>
    <d2p1:ID>1</d2p1:ID>
    <d2p1:IsActive>true</d2p1:IsActive>
    <d2p1:Name>sample string 2</d2p1:Name>
    <d2p1:UpdatedAt>2025-01-22T21:01:24.7363992-06:00</d2p1:UpdatedAt>
  </BrandType>
</BrandTypeResponse>