POST api/appapimonthlyusage/update
Request Information
URI Parameters
None.
Body Parameters
AppApiMonthlyUsage| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| AppApiAccountId | integer |
Required |
|
| MonthDate | date |
Required |
|
| BaseCredits | integer |
Required |
|
| AddOnCredits | integer |
Required |
|
| UsedCredits | decimal number |
Required |
|
| LastUpdated | date |
Required |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "404afb4c-c7af-4290-9ce2-361f80ac9836",
"AppApiAccountId": 3,
"MonthDate": "2026-09-18T11:11:58.7709575+02:00",
"BaseCredits": 5,
"AddOnCredits": 6,
"UsedCredits": 7.0,
"LastUpdated": "2026-09-18T11:11:58.7709575+02:00"
}
application/xml, text/xml
Sample:
<AppApiMonthlyUsage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models"> <AddOnCredits>6</AddOnCredits> <AppApiAccountId>3</AppApiAccountId> <BaseCredits>5</BaseCredits> <Id>1</Id> <LastUpdated>2026-09-18T11:11:58.7709575+02:00</LastUpdated> <MonthDate>2026-09-18T11:11:58.7709575+02:00</MonthDate> <RowGuid>404afb4c-c7af-4290-9ce2-361f80ac9836</RowGuid> <UsedCredits>7</UsedCredits> </AppApiMonthlyUsage>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AppApiMonthlyUsageDisplay| Name | Description | Type | Additional information |
|---|---|---|---|
| AppApiAccountIdDisplay | string |
None. |
|
| DisplayField | string |
None. |
|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| AppApiAccountId | integer |
Required |
|
| MonthDate | date |
Required |
|
| BaseCredits | integer |
Required |
|
| AddOnCredits | integer |
Required |
|
| UsedCredits | decimal number |
Required |
|
| LastUpdated | date |
Required |
Response Formats
application/json, text/json
Sample:
{
"AppApiAccountIdDisplay": "sample string 1",
"DisplayField": "sample string 2",
"Id": 3,
"RowGuid": "e5cc3134-b60e-4d1d-b77a-47637d993c71",
"AppApiAccountId": 5,
"MonthDate": "2026-09-18T11:11:58.7709575+02:00",
"BaseCredits": 7,
"AddOnCredits": 8,
"UsedCredits": 9.0,
"LastUpdated": "2026-09-18T11:11:58.7709575+02:00"
}
application/xml, text/xml
Sample:
<AppApiMonthlyUsageDisplay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models"> <AddOnCredits>8</AddOnCredits> <AppApiAccountId>5</AppApiAccountId> <BaseCredits>7</BaseCredits> <Id>3</Id> <LastUpdated>2026-09-18T11:11:58.7709575+02:00</LastUpdated> <MonthDate>2026-09-18T11:11:58.7709575+02:00</MonthDate> <RowGuid>e5cc3134-b60e-4d1d-b77a-47637d993c71</RowGuid> <UsedCredits>9</UsedCredits> <AppApiAccountIdDisplay>sample string 1</AppApiAccountIdDisplay> <DisplayField>sample string 2</DisplayField> </AppApiMonthlyUsageDisplay>