GET api/appapiaccount/get/{Id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Id

integer

Required

Body Parameters

None.

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": "968dde36-98d5-43cc-9e39-4d0645542acb",
  "Name": "sample string 5",
  "Email": "sample string 6",
  "BaseCredits": 7,
  "AutoAddOn": 8,
  "Enabled": 9,
  "BlockedUntil": "2026-09-18T10:32:07.8002449+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:32:07.8002449+02:00</BlockedUntil>
  <Email>sample string 6</Email>
  <Enabled>9</Enabled>
  <Id>3</Id>
  <Name>sample string 5</Name>
  <RowGuid>968dde36-98d5-43cc-9e39-4d0645542acb</RowGuid>
  <Blocked>true</Blocked>
  <DisplayField>sample string 1</DisplayField>
</AppApiAccountDisplay>