GET api/Values/TranCount?UName={UName}&Comp={Comp}&FY={FY}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
UName | string |
Required |
|
Comp | string |
Required |
|
FY | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TransactionCountName | Description | Type | Additional information |
---|---|---|---|
TranType | string |
None. |
|
TranCount | string |
None. |
|
ErrorMsg | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "TranType": "sample string 1", "TranCount": "sample string 2", "ErrorMsg": "sample string 3" }, { "TranType": "sample string 1", "TranCount": "sample string 2", "ErrorMsg": "sample string 3" } ]
text/html
Sample:
[{"TranType":"sample string 1","TranCount":"sample string 2","ErrorMsg":"sample string 3"},{"TranType":"sample string 1","TranCount":"sample string 2","ErrorMsg":"sample string 3"}]
application/xml, text/xml
Sample:
<ArrayOfTransactionCount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ExcellentErp.Models"> <TransactionCount> <ErrorMsg>sample string 3</ErrorMsg> <TranCount>sample string 2</TranCount> <TranType>sample string 1</TranType> </TransactionCount> <TransactionCount> <ErrorMsg>sample string 3</ErrorMsg> <TranCount>sample string 2</TranCount> <TranType>sample string 1</TranType> </TransactionCount> </ArrayOfTransactionCount>