GET api/Accounts/PrintChequeBankIssue?dtCheqDate={dtCheqDate}&txtBankAccNo={txtBankAccNo}&txtchequeTitle={txtchequeTitle}&chkCross={chkCross}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| dtCheqDate | string |
Required |
|
| txtBankAccNo | string |
Required |
|
| txtchequeTitle | string |
Required |
|
| chkCross | boolean |
Required |
Body Parameters
BankIssueBody| Name | Description | Type | Additional information |
|---|---|---|---|
| SerialNo | integer |
None. |
|
| IssueID | integer |
None. |
|
| AccountNo | string |
None. |
|
| Amount | decimal number |
None. |
|
| AccountName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"SerialNo": 1,
"IssueID": 2,
"AccountNo": "sample string 3",
"Amount": 4.0,
"AccountName": "sample string 5"
}
application/xml, text/xml
Sample:
<BankIssueBody xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RiceMillsERP_API.Models"> <AccountName>sample string 5</AccountName> <AccountNo>sample string 3</AccountNo> <Amount>4</Amount> <IssueID>2</IssueID> <SerialNo>1</SerialNo> </BankIssueBody>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |