POST api/PFProcessAccounts/Save

Request Information

URI Parameters

None.

Body Parameters

Collection of PFProcessAccountsSaveVM
NameDescriptionTypeAdditional information
ProcessId

integer

Required

Account

AccountMasterLookup

Required

Amount

decimal number

Required

Request Formats

application/json, text/json

Sample:
[
  {
    "ProcessId": 1,
    "Account": {
      "AccountId": 1,
      "AccountName": "sample string 2"
    },
    "Amount": 2.0
  },
  {
    "ProcessId": 1,
    "Account": {
      "AccountId": 1,
      "AccountName": "sample string 2"
    },
    "Amount": 2.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfPFProcessAccountsSaveVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <PFProcessAccountsSaveVM>
    <Account>
      <AccountId>1</AccountId>
      <AccountName>sample string 2</AccountName>
    </Account>
    <Amount>2</Amount>
    <ProcessId>1</ProcessId>
  </PFProcessAccountsSaveVM>
  <PFProcessAccountsSaveVM>
    <Account>
      <AccountId>1</AccountId>
      <AccountName>sample string 2</AccountName>
    </Account>
    <Amount>2</Amount>
    <ProcessId>1</ProcessId>
  </PFProcessAccountsSaveVM>
</ArrayOfPFProcessAccountsSaveVM>

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.