POST api/Channel/UpdateChannel

Request Information

URI Parameters

None.

Body Parameters

ChannlModel
NameDescriptionTypeAdditional information
Channel_Id

integer

None.

ChannelCode

string

None.

ChannelName

string

None.

IsActive

boolean

None.

CreationDate

date

None.

ModifiedDate

date

None.

CreatedBy

integer

None.

ModifiedBy

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Channel_Id": 1,
  "ChannelCode": "sample string 2",
  "ChannelName": "sample string 3",
  "IsActive": true,
  "CreationDate": "2024-12-23T03:19:03.0683082+05:30",
  "ModifiedDate": "2024-12-23T03:19:03.0683082+05:30",
  "CreatedBy": 6,
  "ModifiedBy": 1
}

application/xml, text/xml

Sample:
<ChannlModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProjectBLL.CustomModel">
  <ChannelCode>sample string 2</ChannelCode>
  <ChannelName>sample string 3</ChannelName>
  <Channel_Id>1</Channel_Id>
  <CreatedBy>6</CreatedBy>
  <CreationDate>2024-12-23T03:19:03.0683082+05:30</CreationDate>
  <IsActive>true</IsActive>
  <ModifiedBy>1</ModifiedBy>
  <ModifiedDate>2024-12-23T03:19:03.0683082+05:30</ModifiedDate>
</ChannlModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ChannlModel'.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>