POST api/SaveReimbursementPreApproval
Request Information
URI Parameters
None.
Body Parameters
ReimbursementPreApprovalModelName | Description | Type | Additional information |
---|---|---|---|
GnetAssociateId | string |
None. |
|
ReimbursementCategoryId | integer |
None. |
|
ApprovedAmount | decimal number |
None. |
|
ApprovedBy | string |
None. |
|
ApprovedDate | string |
None. |
|
ReimbursementDate | string |
None. |
|
ApplicableForPeriod | string |
None. |
|
FilePath | string |
None. |
|
Extn | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "GnetAssociateId": "sample string 1", "ReimbursementCategoryId": 2, "ApprovedAmount": 3.1, "ApprovedBy": "sample string 4", "ApprovedDate": "sample string 5", "ReimbursementDate": "sample string 6", "ApplicableForPeriod": "sample string 7", "FilePath": "sample string 8", "Extn": "sample string 9" }
application/xml, text/xml
Sample:
<ReimbursementPreApprovalModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTWebAPIForPaperlessOnboarding.Models"> <ApplicableForPeriod>sample string 7</ApplicableForPeriod> <ApprovedAmount>3.1</ApprovedAmount> <ApprovedBy>sample string 4</ApprovedBy> <ApprovedDate>sample string 5</ApprovedDate> <Extn>sample string 9</Extn> <FilePath>sample string 8</FilePath> <GnetAssociateId>sample string 1</GnetAssociateId> <ReimbursementCategoryId>2</ReimbursementCategoryId> <ReimbursementDate>sample string 6</ReimbursementDate> </ReimbursementPreApprovalModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ReimbursementPreApprovalResponseName | Description | Type | Additional information |
---|---|---|---|
status | string |
None. |
|
Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "status": "sample string 1", "Message": "sample string 2" }
application/xml, text/xml
Sample:
<ReimbursementPreApprovalResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTWebAPIForPaperlessOnboarding.Models"> <Message>sample string 2</Message> <status>sample string 1</status> </ReimbursementPreApprovalResponse>