POST api/Benefit/SaveBenefits
Request Information
URI Parameters
None.
Body Parameters
BenefitModal| Name | Description | Type | Additional information |
|---|---|---|---|
| BenefitId | integer |
None. |
|
| MemberId | integer |
None. |
|
| SerialNumber | string |
None. |
|
| BenefitType | byte |
None. |
|
| Amount | decimal number |
None. |
|
| PaymentDate | date |
None. |
|
| PaymentMode | byte |
None. |
|
| PaymentRefrenceNo | string |
None. |
|
| Remarks | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"BenefitId": 1,
"MemberId": 2,
"SerialNumber": "sample string 3",
"BenefitType": 64,
"Amount": 5.0,
"PaymentDate": "2026-05-27T17:31:41.8024212+00:00",
"PaymentMode": 64,
"PaymentRefrenceNo": "sample string 8",
"Remarks": "sample string 9"
}
application/xml, text/xml
Sample:
<BenefitModal xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UnionOwnersBackend.Models"> <Amount>5</Amount> <BenefitId>1</BenefitId> <BenefitType>64</BenefitType> <MemberId>2</MemberId> <PaymentDate>2026-05-27T17:31:41.8024212+00:00</PaymentDate> <PaymentMode>64</PaymentMode> <PaymentRefrenceNo>sample string 8</PaymentRefrenceNo> <Remarks>sample string 9</Remarks> <SerialNumber>sample string 3</SerialNumber> </BenefitModal>
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" />