POST api/PFProcessSummary/Save

Request Information

URI Parameters

None.

Body Parameters

Collection of PFProcessSummarySaveVM
NameDescriptionTypeAdditional information
Type

PFProcessMemberTypeLookupVM

Required

OpeningAmt

decimal number

Required

InterestAmt

decimal number

Required

RemitedAmt

decimal number

Required

WithdrawnAmt

decimal number

Required

ClosingAmt

decimal number

Required

Request Formats

application/json, text/json

Sample:
[
  {
    "Type": {
      "TypeId": 1,
      "TypeName": "sample string 2"
    },
    "OpeningAmt": 1.0,
    "InterestAmt": 2.0,
    "RemitedAmt": 3.0,
    "WithdrawnAmt": 4.0,
    "ClosingAmt": 5.0
  },
  {
    "Type": {
      "TypeId": 1,
      "TypeName": "sample string 2"
    },
    "OpeningAmt": 1.0,
    "InterestAmt": 2.0,
    "RemitedAmt": 3.0,
    "WithdrawnAmt": 4.0,
    "ClosingAmt": 5.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfPFProcessSummarySaveVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <PFProcessSummarySaveVM>
    <ClosingAmt>5</ClosingAmt>
    <InterestAmt>2</InterestAmt>
    <OpeningAmt>1</OpeningAmt>
    <RemitedAmt>3</RemitedAmt>
    <Type>
      <TypeId>1</TypeId>
      <TypeName>sample string 2</TypeName>
    </Type>
    <WithdrawnAmt>4</WithdrawnAmt>
  </PFProcessSummarySaveVM>
  <PFProcessSummarySaveVM>
    <ClosingAmt>5</ClosingAmt>
    <InterestAmt>2</InterestAmt>
    <OpeningAmt>1</OpeningAmt>
    <RemitedAmt>3</RemitedAmt>
    <Type>
      <TypeId>1</TypeId>
      <TypeName>sample string 2</TypeName>
    </Type>
    <WithdrawnAmt>4</WithdrawnAmt>
  </PFProcessSummarySaveVM>
</ArrayOfPFProcessSummarySaveVM>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.