POST api/appapiaccount/preparenew
Request Information
URI Parameters
None.
Body Parameters
Collection of KeyValue| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| Value | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Value": "sample string 2"
},
{
"Id": 1,
"Value": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfKeyValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
<KeyValue>
<Id>1</Id>
<Value>sample string 2</Value>
</KeyValue>
<KeyValue>
<Id>1</Id>
<Value>sample string 2</Value>
</KeyValue>
</ArrayOfKeyValue>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
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. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "dcc06a41-c6b9-46e2-b140-11bfbced50d4",
"Name": "sample string 3",
"Email": "sample string 4",
"BaseCredits": 5,
"AutoAddOn": 6,
"Enabled": 7,
"BlockedUntil": "2026-09-18T10:41:45.4014498+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:41:45.4014498+02:00</BlockedUntil> <Email>sample string 4</Email> <Enabled>7</Enabled> <Id>1</Id> <Name>sample string 3</Name> <RowGuid>dcc06a41-c6b9-46e2-b140-11bfbced50d4</RowGuid> </AppApiAccount>