POST api/appapiaccount/insert

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": "2bdcfa6f-242e-43d5-8b4d-631b244eb5ad",
  "Name": "sample string 3",
  "Email": "sample string 4",
  "BaseCredits": 5,
  "AutoAddOn": 6,
  "Enabled": 7,
  "BlockedUntil": "2026-09-18T10:37:09.3174161+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:09.3174161+02:00</BlockedUntil>
  <Email>sample string 4</Email>
  <Enabled>7</Enabled>
  <Id>1</Id>
  <Name>sample string 3</Name>
  <RowGuid>2bdcfa6f-242e-43d5-8b4d-631b244eb5ad</RowGuid>
</AppApiAccount>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AppApiAccountDisplay
NameDescriptionTypeAdditional information
DisplayField

string

None.

Blocked

boolean

Required

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.

Response Formats

application/json, text/json

Sample:
{
  "DisplayField": "sample string 1",
  "Blocked": true,
  "Id": 3,
  "RowGuid": "a0d84c58-8bdc-44fd-804a-b6169b237985",
  "Name": "sample string 5",
  "Email": "sample string 6",
  "BaseCredits": 7,
  "AutoAddOn": 8,
  "Enabled": 9,
  "BlockedUntil": "2026-09-18T10:37:09.3174161+02:00"
}

application/xml, text/xml

Sample:
<AppApiAccountDisplay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
  <AutoAddOn>8</AutoAddOn>
  <BaseCredits>7</BaseCredits>
  <BlockedUntil>2026-09-18T10:37:09.3174161+02:00</BlockedUntil>
  <Email>sample string 6</Email>
  <Enabled>9</Enabled>
  <Id>3</Id>
  <Name>sample string 5</Name>
  <RowGuid>a0d84c58-8bdc-44fd-804a-b6169b237985</RowGuid>
  <Blocked>true</Blocked>
  <DisplayField>sample string 1</DisplayField>
</AppApiAccountDisplay>