POST api/BudgetCode/ValidateAmountF5

Request Information

URI Parameters

None.

Body Parameters

ValidateAmountF5
NameDescriptionTypeAdditional information
WebUrl

string

None.

ItemIdF1

integer

None.

listBudget

Collection of BudgetAmount

None.

Request Formats

application/json, text/json

Sample:
{
  "WebUrl": "sample string 1",
  "ItemIdF1": 2,
  "listBudget": [
    {
      "Amount": 1.1,
      "BudgetCode": "sample string 2",
      "IsValid": true
    },
    {
      "Amount": 1.1,
      "BudgetCode": "sample string 2",
      "IsValid": true
    }
  ]
}

application/xml, text/xml

Sample:
<ValidateAmountF5 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Appvity.eOffice.Backend.Services.BudgetService">
  <ItemIdF1>2</ItemIdF1>
  <WebUrl>sample string 1</WebUrl>
  <listBudget>
    <BudgetAmount>
      <Amount>1.1</Amount>
      <BudgetCode>sample string 2</BudgetCode>
      <IsValid>true</IsValid>
    </BudgetAmount>
    <BudgetAmount>
      <Amount>1.1</Amount>
      <BudgetCode>sample string 2</BudgetCode>
      <IsValid>true</IsValid>
    </BudgetAmount>
  </listBudget>
</ValidateAmountF5>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ValidateAmountF5'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.