POST api/Invoice/DeleteAccountTerms

Request Information

URI Parameters

None.

Body Parameters

AccountTermsModel
NameDescriptionTypeAdditional information
TermID

integer

None.

TermName

string

None.

TermDescription

string

None.

TermTypeID

integer

None.

TermPeriod

integer

None.

NumberOfDaysGrade

integer

None.

PromptDiscount

integer

None.

TermAccountNumber

string

None.

IsActive

boolean

None.

CreatedBy

integer

None.

CreatedDate

date

None.

ModifiedBy

integer

None.

ModifiedDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "TermID": 1,
  "TermName": "sample string 2",
  "TermDescription": "sample string 3",
  "TermTypeID": 4,
  "TermPeriod": 5,
  "NumberOfDaysGrade": 6,
  "PromptDiscount": 7,
  "TermAccountNumber": "sample string 8",
  "IsActive": true,
  "CreatedBy": 10,
  "CreatedDate": "2021-02-24T12:56:40.4961044+11:00",
  "ModifiedBy": 12,
  "ModifiedDate": "2021-02-24T12:56:40.4961044+11:00"
}

application/xml, text/xml

Sample:
<AccountTermsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TARWebAPI.Models">
  <CreatedBy>10</CreatedBy>
  <CreatedDate>2021-02-24T12:56:40.4961044+11:00</CreatedDate>
  <IsActive>true</IsActive>
  <ModifiedBy>12</ModifiedBy>
  <ModifiedDate>2021-02-24T12:56:40.4961044+11:00</ModifiedDate>
  <NumberOfDaysGrade>6</NumberOfDaysGrade>
  <PromptDiscount>7</PromptDiscount>
  <TermAccountNumber>sample string 8</TermAccountNumber>
  <TermDescription>sample string 3</TermDescription>
  <TermID>1</TermID>
  <TermName>sample string 2</TermName>
  <TermPeriod>5</TermPeriod>
  <TermTypeID>4</TermTypeID>
</AccountTermsModel>

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.