POST api/appapiaccount/update
Request Information
URI Parameters
None.
Body Parameters
AppApiAccount| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| Name | string |
None. |
|
| string |
None. |
||
| BaseCredits | integer |
Required |
|
| AutoAddOn | integer |
Required |
|
| Enabled | integer |
Required |
|
| BlockedUntil | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "8fd2d191-2f08-4f40-a806-88c1526b34a9",
"Name": "sample string 3",
"Email": "sample string 4",
"BaseCredits": 5,
"AutoAddOn": 6,
"Enabled": 7,
"BlockedUntil": "2026-09-18T11:07:51.4361311+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-18T11:07:51.4361311+02:00</BlockedUntil> <Email>sample string 4</Email> <Enabled>7</Enabled> <Id>1</Id> <Name>sample string 3</Name> <RowGuid>8fd2d191-2f08-4f40-a806-88c1526b34a9</RowGuid> </AppApiAccount>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AppApiAccountDisplay| Name | Description | Type | Additional information |
|---|---|---|---|
| DisplayField | string |
None. |
|
| Blocked | boolean |
Required |
|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| Name | string |
None. |
|
| 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": "409e22bc-5f72-42db-980d-c54bb89221e9",
"Name": "sample string 5",
"Email": "sample string 6",
"BaseCredits": 7,
"AutoAddOn": 8,
"Enabled": 9,
"BlockedUntil": "2026-09-18T11:07:51.437132+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-18T11:07:51.437132+02:00</BlockedUntil> <Email>sample string 6</Email> <Enabled>9</Enabled> <Id>3</Id> <Name>sample string 5</Name> <RowGuid>409e22bc-5f72-42db-980d-c54bb89221e9</RowGuid> <Blocked>true</Blocked> <DisplayField>sample string 1</DisplayField> </AppApiAccountDisplay>