POST api/appapiaccount/delete

Request Information

URI Parameters

None.

Body Parameters

AppApiAccount
NameDescriptionTypeAdditional information
Id

integer

Required

RowGuid

globally unique identifier

Required

Name

string

None.

Email

string

None.

BaseCredits

integer

Required

AutoAddOn

integer

Required

Enabled

integer

Required

BlockedUntil

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "RowGuid": "02006996-9ecf-482b-9f56-3a9d96c162d7",
  "Name": "sample string 3",
  "Email": "sample string 4",
  "BaseCredits": 5,
  "AutoAddOn": 6,
  "Enabled": 7,
  "BlockedUntil": "2026-09-18T10:37:07.3643774+02:00"
}

application/xml, text/xml

Sample:
<AppApiAccount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
  <AutoAddOn>6</AutoAddOn>
  <BaseCredits>5</BaseCredits>
  <BlockedUntil>2026-09-18T10:37:07.3643774+02:00</BlockedUntil>
  <Email>sample string 4</Email>
  <Enabled>7</Enabled>
  <Id>1</Id>
  <Name>sample string 3</Name>
  <RowGuid>02006996-9ecf-482b-9f56-3a9d96c162d7</RowGuid>
</AppApiAccount>

application/x-www-form-urlencoded

Sample:

Sample not available.

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>