POST api/ChequesBooks/SaveRecord?userId={userId}&isOpen={isOpen}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | integer |
Required |
|
| isOpen | boolean |
Required |
Body Parameters
ChequeBook| Name | Description | Type | Additional information |
|---|---|---|---|
| BookID | integer |
None. |
|
| EntryDate | date |
None. |
|
| AccountNo | string |
None. |
|
| StartFrom | integer |
None. |
|
| TotalLeafs | integer |
None. |
|
| Prefix | string |
None. |
|
| Remarks | string |
None. |
|
| ListBody | Collection of ChequeBookBody |
None. |
Request Formats
application/json, text/json
Sample:
{
"BookID": 1,
"EntryDate": "2026-06-24T03:07:34.7770216-07:00",
"AccountNo": "sample string 3",
"StartFrom": 4,
"TotalLeafs": 5,
"Prefix": "sample string 6",
"Remarks": "sample string 7",
"ListBody": [
{
"SerialNo": 1,
"BookID": 2,
"ChequeNo": 3,
"IsDelete": true,
"IsCancel": true,
"CancelDate": "2026-06-24T03:07:34.7770216-07:00",
"Remarks": "sample string 7",
"IsInUse": true
},
{
"SerialNo": 1,
"BookID": 2,
"ChequeNo": 3,
"IsDelete": true,
"IsCancel": true,
"CancelDate": "2026-06-24T03:07:34.7770216-07:00",
"Remarks": "sample string 7",
"IsInUse": true
}
]
}
application/xml, text/xml
Sample:
<ChequeBook xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Objects">
<AccountNo>sample string 3</AccountNo>
<BookID>1</BookID>
<EntryDate>2026-06-24T03:07:34.7770216-07:00</EntryDate>
<ListBody>
<ChequeBookBody>
<BookID>2</BookID>
<CancelDate>2026-06-24T03:07:34.7770216-07:00</CancelDate>
<ChequeNo>3</ChequeNo>
<IsCancel>true</IsCancel>
<IsDelete>true</IsDelete>
<IsInUse>true</IsInUse>
<Remarks>sample string 7</Remarks>
<SerialNo>1</SerialNo>
</ChequeBookBody>
<ChequeBookBody>
<BookID>2</BookID>
<CancelDate>2026-06-24T03:07:34.7770216-07:00</CancelDate>
<ChequeNo>3</ChequeNo>
<IsCancel>true</IsCancel>
<IsDelete>true</IsDelete>
<IsInUse>true</IsInUse>
<Remarks>sample string 7</Remarks>
<SerialNo>1</SerialNo>
</ChequeBookBody>
</ListBody>
<Prefix>sample string 6</Prefix>
<Remarks>sample string 7</Remarks>
<StartFrom>4</StartFrom>
<TotalLeafs>5</TotalLeafs>
</ChequeBook>
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. |