POST api/Reconciliation/ReconciliationGroupAccountsDelete

Request Information

URI Parameters

None.

Body Parameters

ReconciliationGroupAccount
NameDescriptionTypeAdditional information
ReconciliationGroupAccountID

integer

None.

ReconciliationGroupID

string

None.

BSB

integer

None.

AccountNum

integer

None.

AccountSuffix

integer

None.

AccountName

string

None.

AccountBalance

decimal number

None.

Notes

string

None.

IsDeleted

boolean

None.

AsOfTime

date

None.

Request Formats

application/json, text/json

Sample:
{
  "ReconciliationGroupAccountID": 1,
  "ReconciliationGroupID": "sample string 1",
  "BSB": 2,
  "AccountNum": 3,
  "AccountSuffix": 1,
  "AccountName": "sample string 4",
  "AccountBalance": 5.1,
  "Notes": "sample string 6",
  "IsDeleted": true,
  "AsOfTime": "2026-04-07T20:10:05.4823794+10:00"
}

application/xml, text/xml

Sample:
<ReconciliationGroupAccount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ConsoleAPI.Internal.Models.Reconciliation">
  <AccountBalance>5.1</AccountBalance>
  <AccountName>sample string 4</AccountName>
  <AccountNum>3</AccountNum>
  <AccountSuffix>1</AccountSuffix>
  <AsOfTime>2026-04-07T20:10:05.4823794+10:00</AsOfTime>
  <BSB>2</BSB>
  <IsDeleted>true</IsDeleted>
  <Notes>sample string 6</Notes>
  <ReconciliationGroupAccountID>1</ReconciliationGroupAccountID>
  <ReconciliationGroupID>sample string 1</ReconciliationGroupID>
</ReconciliationGroupAccount>

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 'ReconciliationGroupAccount'.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>