POST api/appapimonthlyusage/keyvalue

Request Information

URI Parameters

None.

Body Parameters

AppApiMonthlyUsageSelect
NameDescriptionTypeAdditional information
Id

integer

None.

AppApiAccountId

integer

None.

MonthDateFrom

date

None.

MonthDateTo

date

None.

BaseCreditsFrom

integer

None.

BaseCreditsTo

integer

None.

AddOnCreditsFrom

integer

None.

AddOnCreditsTo

integer

None.

UsedCreditsFrom

decimal number

None.

UsedCreditsTo

decimal number

None.

SortFieldDefault

string

None.

Quicksearch

string

None.

filterIsSet

boolean

None.

resetFilter

boolean

None.

TagIds

Collection of integer

None.

TagFullMatch

boolean

None.

WithTags

boolean

None.

SaveCustomFilterName

string

None.

PageSize

integer

Required

PageIndex

integer

Required

SortField

string

None.

RequestFields

Collection of string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "AppApiAccountId": 1,
  "MonthDateFrom": "2026-09-18T11:01:13.2880542+02:00",
  "MonthDateTo": "2026-09-18T11:01:13.2880542+02:00",
  "BaseCreditsFrom": 1,
  "BaseCreditsTo": 1,
  "AddOnCreditsFrom": 1,
  "AddOnCreditsTo": 1,
  "UsedCreditsFrom": 1.0,
  "UsedCreditsTo": 1.0,
  "SortFieldDefault": "sample string 1",
  "Quicksearch": "sample string 2",
  "filterIsSet": true,
  "resetFilter": true,
  "TagIds": [
    1,
    2
  ],
  "TagFullMatch": true,
  "WithTags": true,
  "SaveCustomFilterName": "sample string 3",
  "PageSize": 4,
  "PageIndex": 5,
  "SortField": "sample string 6",
  "RequestFields": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<AppApiMonthlyUsageSelect xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
  <PageIndex>5</PageIndex>
  <PageSize>4</PageSize>
  <RequestFields xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </RequestFields>
  <SortField>sample string 6</SortField>
  <Quicksearch>sample string 2</Quicksearch>
  <SaveCustomFilterName>sample string 3</SaveCustomFilterName>
  <SortFieldDefault>sample string 1</SortFieldDefault>
  <TagFullMatch>true</TagFullMatch>
  <TagIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </TagIds>
  <WithTags>true</WithTags>
  <filterIsSet>true</filterIsSet>
  <resetFilter>true</resetFilter>
  <AddOnCreditsFrom>1</AddOnCreditsFrom>
  <AddOnCreditsTo>1</AddOnCreditsTo>
  <AppApiAccountId>1</AppApiAccountId>
  <BaseCreditsFrom>1</BaseCreditsFrom>
  <BaseCreditsTo>1</BaseCreditsTo>
  <Id>1</Id>
  <MonthDateFrom>2026-09-18T11:01:13.2880542+02:00</MonthDateFrom>
  <MonthDateTo>2026-09-18T11:01:13.2880542+02:00</MonthDateTo>
  <UsedCreditsFrom>1</UsedCreditsFrom>
  <UsedCreditsTo>1</UsedCreditsTo>
</AppApiMonthlyUsageSelect>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of KeyValue
NameDescriptionTypeAdditional information
Id

integer

Required

Value

string

None.

Response 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>