POST api/ApprovalMaster/SaveApprovals
Request Information
URI Parameters
None.
Body Parameters
ApprovalModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationID | integer |
None. |
|
| UserID | integer |
None. |
|
| ApprovedStatus | integer |
None. |
|
| ApprovedAmount | decimal number |
None. |
|
| ApprovalRemarks | string |
None. |
|
| BillingCycleDate | date |
None. |
|
| CompanyID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ApplicationID": 1,
"UserID": 1,
"ApprovedStatus": 1,
"ApprovedAmount": 1.0,
"ApprovalRemarks": "sample string 2",
"BillingCycleDate": "2025-12-12T02:29:27.6235672+05:30",
"CompanyID": 1
}
application/xml, text/xml
Sample:
<ApprovalModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MfgProj.BusinessObject"> <ApplicationID>1</ApplicationID> <ApprovalRemarks>sample string 2</ApprovalRemarks> <ApprovedAmount>1</ApprovedAmount> <ApprovedStatus>1</ApprovedStatus> <BillingCycleDate>2025-12-12T02:29:27.6235672+05:30</BillingCycleDate> <CompanyID>1</CompanyID> <UserID>1</UserID> </ApprovalModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |