POST api/Entities/AccountSettings

Request Information

URI Parameters

None.

Body Parameters

AccountSettingsItem
NameDescriptionTypeAdditional information
RowID

integer

None.

EntityAccountID

globally unique identifier

None.

DefaultBillerCode

string

None.

CreatedDateTimeUTC

date

None.

ModifiedDateTimeUTC

date

None.

IsDeleted

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "RowID": 1,
  "EntityAccountID": "076c63d9-dd3e-472d-9d0b-b71044779fa4",
  "DefaultBillerCode": "sample string 3",
  "CreatedDateTimeUTC": "2026-04-07T20:06:33.4412131+10:00",
  "ModifiedDateTimeUTC": "2026-04-07T20:06:33.4412131+10:00",
  "IsDeleted": true
}

application/xml, text/xml

Sample:
<AccountSettingsItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ConsoleAPI.Internal.Models.Entities">
  <CreatedDateTimeUTC>2026-04-07T20:06:33.4412131+10:00</CreatedDateTimeUTC>
  <DefaultBillerCode>sample string 3</DefaultBillerCode>
  <EntityAccountID>076c63d9-dd3e-472d-9d0b-b71044779fa4</EntityAccountID>
  <IsDeleted>true</IsDeleted>
  <ModifiedDateTimeUTC>2026-04-07T20:06:33.4412131+10:00</ModifiedDateTimeUTC>
  <RowID>1</RowID>
</AccountSettingsItem>

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

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>