POST api/CallCenter/DeleteCallCenter

Request Information

URI Parameters

None.

Body Parameters

CallCenterInfo
NameDescriptionTypeAdditional information
CallCenter_Id

integer

None.

CallCenterCode

string

None.

CallCenterName

string

None.

IsActive

boolean

None.

CreatedBy

integer

None.

CreationDate

date

None.

ModifiedBy

integer

None.

ModifiedDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "CallCenter_Id": 1,
  "CallCenterCode": "sample string 2",
  "CallCenterName": "sample string 3",
  "IsActive": true,
  "CreatedBy": 5,
  "CreationDate": "2024-12-23T03:00:47.0907219+05:30",
  "ModifiedBy": 1,
  "ModifiedDate": "2024-12-23T03:00:47.0907219+05:30"
}

application/xml, text/xml

Sample:
<CallCenterInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProjectBLL.CustomModel">
  <CallCenterCode>sample string 2</CallCenterCode>
  <CallCenterName>sample string 3</CallCenterName>
  <CallCenter_Id>1</CallCenter_Id>
  <CreatedBy>5</CreatedBy>
  <CreationDate>2024-12-23T03:00:47.0907219+05:30</CreationDate>
  <IsActive>true</IsActive>
  <ModifiedBy>1</ModifiedBy>
  <ModifiedDate>2024-12-23T03:00:47.0907219+05:30</ModifiedDate>
</CallCenterInfo>

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

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>