POST api/TermAccountsAr/UpdateTermAccountBalance

Request Information

URI Parameters

None.

Body Parameters

TermAccountArRequest
NameDescriptionTypeAdditional information
TermAccountId

integer

None.

InvoiceAmount

decimal number

None.

PaidAmount

decimal number

None.

CreditAmount

decimal number

None.

AdjustmentAmount

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "TermAccountId": 1,
  "InvoiceAmount": 2.0,
  "PaidAmount": 3.0,
  "CreditAmount": 4.0,
  "AdjustmentAmount": 5.0
}

text/html

Sample:
{"TermAccountId":1,"InvoiceAmount":2.0,"PaidAmount":3.0,"CreditAmount":4.0,"AdjustmentAmount":5.0}

application/xml, text/xml

Sample:
<TermAccountArRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Specialtys.DTO.Request">
  <AdjustmentAmount>5</AdjustmentAmount>
  <CreditAmount>4</CreditAmount>
  <InvoiceAmount>2</InvoiceAmount>
  <PaidAmount>3</PaidAmount>
  <TermAccountId>1</TermAccountId>
</TermAccountArRequest>

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.