POST api/Reimbursement/SavePaymentDetails?EmployeeID={EmployeeID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
EmployeeID | integer |
Required |
Body Parameters
ParamForPaymentDetailsName | Description | Type | Additional information |
---|---|---|---|
RF_ID | integer |
None. |
|
PayAmount | decimal number |
None. |
|
PaymentMode | string |
None. |
|
BankName | string |
None. |
|
ChequeNumber | string |
None. |
|
Notes | string |
None. |
|
PaymentDate | string |
None. |
|
PaymentBy | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "RF_ID": 1, "PayAmount": 2.0, "PaymentMode": "sample string 3", "BankName": "sample string 4", "ChequeNumber": "sample string 5", "Notes": "sample string 6", "PaymentDate": "sample string 7", "PaymentBy": "sample string 8" }
application/xml, text/xml
Sample:
<ParamForPaymentDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HRMSWebApi.Models"> <BankName>sample string 4</BankName> <ChequeNumber>sample string 5</ChequeNumber> <Notes>sample string 6</Notes> <PayAmount>2</PayAmount> <PaymentBy>sample string 8</PaymentBy> <PaymentDate>sample string 7</PaymentDate> <PaymentMode>sample string 3</PaymentMode> <RF_ID>1</RF_ID> </ParamForPaymentDetails>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.