POST api/Report/ReportList
Request Information
URI Parameters
None.
Body Parameters
ReportViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| companyid | string |
None. |
|
| reportmasterid | integer |
None. |
|
| reportdomain | string |
None. |
|
| reportcode | string |
None. |
|
| reportname | string |
None. |
|
| reporttype | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"companyid": "sample string 1",
"reportmasterid": 2,
"reportdomain": "sample string 3",
"reportcode": "sample string 4",
"reportname": "sample string 5",
"reporttype": "sample string 6"
}
application/xml, text/xml
Sample:
<ReportViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Kantaserp.Models"> <companyid>sample string 1</companyid> <reportcode>sample string 4</reportcode> <reportdomain>sample string 3</reportdomain> <reportmasterid>2</reportmasterid> <reportname>sample string 5</reportname> <reporttype>sample string 6</reporttype> </ReportViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResultViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| status | boolean |
None. |
|
| message | string |
None. |
|
| data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": true,
"message": "sample string 2",
"data": {}
}
application/xml, text/xml
Sample:
<HttpResultViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Kantaserp.Models"> <data /> <message>sample string 2</message> <status>true</status> </HttpResultViewModel>