POST api/UnicontaReport
Request Information
URI Parameters
None.
Body Parameters
ReportInputModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ReportName | string |
None. |
|
| PropValue | string |
None. |
|
| PropName | string |
None. |
|
| PropType | string |
None. |
|
| ObjectName | string |
None. |
|
| Istext | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"ReportName": "sample string 1",
"PropValue": "sample string 2",
"PropName": "sample string 3",
"PropType": "sample string 4",
"ObjectName": "sample string 5",
"Istext": true
}
application/xml, text/xml
Sample:
<ReportInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EAMobileReport.Models"> <Istext>true</Istext> <ObjectName>sample string 5</ObjectName> <PropName>sample string 3</PropName> <PropType>sample string 4</PropType> <PropValue>sample string 2</PropValue> <ReportName>sample string 1</ReportName> </ReportInputModel>
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>