POST api/changeAmounts

Request Information

URI Parameters

None.

Body Parameters

Collection of ChangeAmount
NameDescriptionTypeAdditional information
ChangeAmountID

integer

None.

Description

string

None.

Denomination

string

None.

DenominationCount

integer

None.

SortOrder

integer

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "changeAmountID": 1,
    "description": "sample string 1",
    "denomination": "sample string 2",
    "denominationCount": 3,
    "sortOrder": 4
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfChangeAmount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.Pos">
  <ChangeAmount>
    <ChangeAmountID>1</ChangeAmountID>
    <Denomination>sample string 2</Denomination>
    <DenominationCount>3</DenominationCount>
    <Description>sample string 1</Description>
    <SortOrder>4</SortOrder>
  </ChangeAmount>
  <ChangeAmount>
    <ChangeAmountID>1</ChangeAmountID>
    <Denomination>sample string 2</Denomination>
    <DenominationCount>3</DenominationCount>
    <Description>sample string 1</Description>
    <SortOrder>4</SortOrder>
  </ChangeAmount>
</ArrayOfChangeAmount>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.