POST api/Income/SaveIncome
Request Information
URI Parameters
None.
Body Parameters
IncomeModal| Name | Description | Type | Additional information |
|---|---|---|---|
| CallsheetId | integer |
None. |
|
| ProductionId | integer |
None. |
|
| LocationId | integer |
None. |
|
| CoProductionId | integer |
None. |
|
| BankId | integer |
None. |
|
| IncomeType | byte |
None. |
|
| TotalBillAmount | decimal number |
None. |
|
| ReceivedAmount | decimal number |
None. |
|
| ChequeNo | string |
None. |
|
| IncomeDate | date |
None. |
|
| Remarks | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CallsheetId": 1,
"ProductionId": 2,
"LocationId": 3,
"CoProductionId": 1,
"BankId": 4,
"IncomeType": 64,
"TotalBillAmount": 6.0,
"ReceivedAmount": 7.0,
"ChequeNo": "sample string 8",
"IncomeDate": "2026-05-27T17:31:30.7632061+00:00",
"Remarks": "sample string 10"
}
application/xml, text/xml
Sample:
<IncomeModal xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UnionOwnersBackend.Models"> <BankId>4</BankId> <CallsheetId>1</CallsheetId> <ChequeNo>sample string 8</ChequeNo> <CoProductionId>1</CoProductionId> <IncomeDate>2026-05-27T17:31:30.7632061+00:00</IncomeDate> <IncomeType>64</IncomeType> <LocationId>3</LocationId> <ProductionId>2</ProductionId> <ReceivedAmount>7</ReceivedAmount> <Remarks>sample string 10</Remarks> <TotalBillAmount>6</TotalBillAmount> </IncomeModal>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<ArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />