POST api/Income/SaveProductionHouseIncome

Request Information

URI Parameters

None.

Body Parameters

ProductionHouseIncomeModal
NameDescriptionTypeAdditional information
ProductionId

integer

None.

BankId

integer

None.

IncomeType

byte

None.

TotalBillAmount

decimal number

None.

ReceivedAmount

decimal number

None.

ChequeNo

string

None.

IncomeDate

date

None.

MemberId

integer

None.

Remarks

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ProductionId": 1,
  "BankId": 2,
  "IncomeType": 64,
  "TotalBillAmount": 4.0,
  "ReceivedAmount": 5.0,
  "ChequeNo": "sample string 6",
  "IncomeDate": "2026-07-22T14:14:52.7373213+00:00",
  "MemberId": 1,
  "Remarks": "sample string 8"
}

application/xml, text/xml

Sample:
<ProductionHouseIncomeModal xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UnionOwnersBackend.Models">
  <BankId>2</BankId>
  <ChequeNo>sample string 6</ChequeNo>
  <IncomeDate>2026-07-22T14:14:52.7373213+00:00</IncomeDate>
  <IncomeType>64</IncomeType>
  <MemberId>1</MemberId>
  <ProductionId>1</ProductionId>
  <ReceivedAmount>5</ReceivedAmount>
  <Remarks>sample string 8</Remarks>
  <TotalBillAmount>4</TotalBillAmount>
</ProductionHouseIncomeModal>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of Object

None.

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" />