GET api/DownloadStatistics?user={user}&password={password}&applicationName={applicationName}
Met dit request kunnen bij een licentie de statistieken opgevraagd worden over gebruik van de DATA-collectief service.
Request Information
URI Parameters
| Naam | Omschrijving | Type | Extra informatie |
|---|---|---|---|
| user |
E-mailadres van Mijn DATA-collectief account. |
string |
Vereist |
| password |
Wachtwoord API koppeling. |
string |
Vereist |
| applicationName |
Applicatienaam API koppeling. |
string |
Vereist |
Body Parameters
None.
Response Information
| Naam | Omschrijving | Type | Extra informatie |
|---|---|---|---|
| PaymentMethod |
Afrekenmodel wat van toepassing is voor deze licentie |
string |
Geen |
| CreditsAcquired |
Aantal verkregen credits |
integer |
Geen |
| CreditsUsed |
Aantal gebruikte credits |
integer |
Geen |
| CreditsBalance |
Aantal resterende credits |
integer |
Geen |
| CreditsFromWUS |
Aantal credits voor mutaties |
integer |
Geen |
| CreditsUsedForAlerts |
Aantal gebruikt voor alerts |
integer |
Geen |
Response Formats
application/json, text/json
Voorbeeld:
{
"PaymentMethod": "voorbeeld string 1",
"CreditsAcquired": 2,
"CreditsUsed": 3,
"CreditsBalance": 4,
"CreditsFromWUS": 5,
"CreditsUsedForAlerts": 6
}
application/xml, text/xml
Voorbeeld:
<DownloadStatisticsResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <PaymentMethod>voorbeeld string 1</PaymentMethod> <CreditsAcquired>2</CreditsAcquired> <CreditsUsed>3</CreditsUsed> <CreditsBalance>4</CreditsBalance> <CreditsFromWUS>5</CreditsFromWUS> <CreditsUsedForAlerts>6</CreditsUsedForAlerts> </DownloadStatisticsResult>