POST api/Member/ExportNullSheet
Request Information
URI Parameters
None.
Body Parameters
ExportNullSheetRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ProductionName | string |
None. |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| CheqAmount | decimal number |
None. |
|
| Members | Collection of MemberPayment |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProductionName": "sample string 1",
"StartDate": "2026-05-27T17:31:32.8134044+00:00",
"EndDate": "2026-05-27T17:31:32.8134044+00:00",
"CheqAmount": 4.0,
"Members": [
{
"MemberId": 1,
"MemberName": "sample string 2",
"MembershipNo": "sample string 3",
"VehicleName": "sample string 4",
"VehicleNo": "sample string 5",
"TotalDaysWorked": 6,
"GrossAmount": 7.0,
"LoanDeduction": 8.0,
"NetAmount": 9.0,
"UnionDeduction": 10.0,
"TdsDeduction": 11.0,
"IncomeType": 64
},
{
"MemberId": 1,
"MemberName": "sample string 2",
"MembershipNo": "sample string 3",
"VehicleName": "sample string 4",
"VehicleNo": "sample string 5",
"TotalDaysWorked": 6,
"GrossAmount": 7.0,
"LoanDeduction": 8.0,
"NetAmount": 9.0,
"UnionDeduction": 10.0,
"TdsDeduction": 11.0,
"IncomeType": 64
}
]
}
application/xml, text/xml
Sample:
<MemberController.ExportNullSheetRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UnionOwnersBackend.Controllers.apis">
<CheqAmount>4</CheqAmount>
<EndDate>2026-05-27T17:31:32.8134044+00:00</EndDate>
<Members>
<MemberController.MemberPayment>
<GrossAmount>7</GrossAmount>
<IncomeType>64</IncomeType>
<LoanDeduction>8</LoanDeduction>
<MemberId>1</MemberId>
<MemberName>sample string 2</MemberName>
<MembershipNo>sample string 3</MembershipNo>
<NetAmount>9</NetAmount>
<TdsDeduction>11</TdsDeduction>
<TotalDaysWorked>6</TotalDaysWorked>
<UnionDeduction>10</UnionDeduction>
<VehicleName>sample string 4</VehicleName>
<VehicleNo>sample string 5</VehicleNo>
</MemberController.MemberPayment>
<MemberController.MemberPayment>
<GrossAmount>7</GrossAmount>
<IncomeType>64</IncomeType>
<LoanDeduction>8</LoanDeduction>
<MemberId>1</MemberId>
<MemberName>sample string 2</MemberName>
<MembershipNo>sample string 3</MembershipNo>
<NetAmount>9</NetAmount>
<TdsDeduction>11</TdsDeduction>
<TotalDaysWorked>6</TotalDaysWorked>
<UnionDeduction>10</UnionDeduction>
<VehicleName>sample string 4</VehicleName>
<VehicleNo>sample string 5</VehicleNo>
</MemberController.MemberPayment>
</Members>
<ProductionName>sample string 1</ProductionName>
<StartDate>2026-05-27T17:31:32.8134044+00:00</StartDate>
</MemberController.ExportNullSheetRequest>
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" />