POST api/Tags/Delete

Request Information

URI Parameters

None.

Body Parameters

TagsModel
NameDescriptionTypeAdditional information
Id

integer

None.

tag_name

string

Required

IsActive

boolean

Required

CreatedBy

string

Required

CreatedDate

date

Required

UpdatedBy

string

None.

UpdatedDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "tag_name": "sample string 2",
  "IsActive": true,
  "CreatedBy": "sample string 4",
  "CreatedDate": "2025-12-11T04:31:13.8462947+05:30",
  "UpdatedBy": "sample string 6",
  "UpdatedDate": "2025-12-11T04:31:13.8462947+05:30"
}

application/xml, text/xml

Sample:
<TagsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PropertyRMS.Model">
  <CreatedBy>sample string 4</CreatedBy>
  <CreatedDate>2025-12-11T04:31:13.8462947+05:30</CreatedDate>
  <Id>1</Id>
  <IsActive>true</IsActive>
  <UpdatedBy>sample string 6</UpdatedBy>
  <UpdatedDate>2025-12-11T04:31:13.8462947+05:30</UpdatedDate>
  <tag_name>sample string 2</tag_name>
</TagsModel>

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 'TagsModel'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.