POST api/Center/AddHardwareCallProblem/{callid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| callid | string |
Required |
Body Parameters
HardwareCallProblem| Name | Description | Type | Additional information |
|---|---|---|---|
| hid | integer |
None. |
|
| callid | string |
None. |
|
| pcuser | string |
None. |
|
| problemcategory | string |
None. |
|
| problemsubcategory | string |
None. |
|
| userproblem | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"hid": 1,
"callid": "sample string 2",
"pcuser": "sample string 3",
"problemcategory": "sample string 4",
"problemsubcategory": "sample string 5",
"userproblem": "sample string 6"
}
application/xml, text/xml
Sample:
<HardwareCallProblem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JankariPortalPIFAPI.Models"> <callid>sample string 2</callid> <hid>1</hid> <pcuser>sample string 3</pcuser> <problemcategory>sample string 4</problemcategory> <problemsubcategory>sample string 5</problemsubcategory> <userproblem>sample string 6</userproblem> </HardwareCallProblem>
application/x-www-form-urlencoded
Sample:
Sample not available.
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>