POST api/CallCenter/AddCallCenter
Request Information
URI Parameters
None.
Body Parameters
CallCenterInfoName | Description | Type | Additional 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:28:49.8399367+05:30", "ModifiedBy": 1, "ModifiedDate": "2024-12-23T03:28:49.8399367+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:28:49.8399367+05:30</CreationDate> <IsActive>true</IsActive> <ModifiedBy>1</ModifiedBy> <ModifiedDate>2024-12-23T03:28:49.8399367+05:30</ModifiedDate> </CallCenterInfo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
stringResponse 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>