POST api/AmsMobile/MBLSaveCashEntry
Request Information
URI Parameters
None.
Body Parameters
clsSaveCashEntry| Name | Description | Type | Additional information |
|---|---|---|---|
| CashID | integer |
None. |
|
| UserID | integer |
None. |
|
| CashType | string |
None. |
|
| Amount | decimal number |
None. |
|
| CashDate | date |
None. |
|
| Perticulars | string |
None. |
|
| BranchID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CashID": 1,
"UserID": 1,
"CashType": "sample string 1",
"Amount": 1.0,
"CashDate": "2025-12-12T02:29:23.4211179+05:30",
"Perticulars": "sample string 2",
"BranchID": 1
}
application/xml, text/xml
Sample:
<clsSaveCashEntry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MfgProj.BusinessObject"> <Amount>1</Amount> <BranchID>1</BranchID> <CashDate>2025-12-12T02:29:23.4211179+05:30</CashDate> <CashID>1</CashID> <CashType>sample string 1</CashType> <Perticulars>sample string 2</Perticulars> <UserID>1</UserID> </clsSaveCashEntry>
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. |